In Chapter 4, .NET Core Unit Testing, we explored the various unit testing frameworks available for .NET Core and C# and later explored in detail the xUnit.net framework. We then moved on to the important concepts of data-driven unit tests in Chapter 5, Data-Driven Unit Tests, which facilitate the creation of unit tests that can be executed with data loaded from disparate data sources. In Chapter 6, Mocking Dependencies, we explained in details dependencies mocking, where we walked through creation of simulated objects using the Moq framework.
Effective practice of TDD can assist with providing useful and insightful feedback on the quality of the code base of software projects. With continuous integration, the process of build automation and code automated tests are taken to the next level, allowing development teams to take advantage...