Wednesday, February 14, 2018

Moq - Unit Test In .NET Core App Using Mock Object

The Unit test is a block of code that helps us in verifying the expected behavior of the other code in isolation; i.e., there is no dependency between the tests. This is good way to test the application code before it goes for quality assurance (QA). There are three different test frameworks for Unit Testing supported by ASP.NET Core: MSTest, XUnit, and NUnit. All Unit test frameworks, offer a similar end goal and help us to write unit tests that are simpler, easier and faster.

source http://www.c-sharpcorner.com/article/moq-unit-test-net-core-app-using-mock-object/

No comments:

Post a Comment