How to write Faking Tests using xUnitMay 14, 2020Articles, xUnit2 CommentsIn this introductory article, let's get started with unit testing in .NET Core using xUnit and write some Faking tests using the same.
How to Interaction Tests with ASP.NET Core and xUnitNovember 1, 2019Articles, xUnit1 CommentIn the part two article, learn about writing Interaction unit tests aka Void Methods. We assert by verifying whether a particular method has been called or not.
Types of Unit Testing in ASP.NET Core with xUnitNovember 1, 2019Articles, xUnit1 CommentIn this article, let's discuss the different types of methods and how do we write unit tests for these methods using xUnit in ASP.NET Core
How to write Mocking Tests using xUnit and MoqOctober 29, 2019Articles, xUnit1 CommentIn this article, let's understand why Faking Tests are not efficient and how we can use Moq framework to create Mocking Tests in xUnit