When using TDD to develop an application it is essential that the system under test (SUT) can be tested in isolation. That is, only the class that I am currently developing is “real” and all other ...
We often need to write unit tests for code that accesses an external resource such as a database or a file file system. If such resources are not available, the only way to ensure that the tests can ...
TL;DR: Collectible C# assemblies are possibly breaking some very popular 3rd party nuget packages. This one's a bit complicated, so please be patient with me. I use Moq in conjunction with my own test ...