Top

How to do integration testing in ASP.Net Core

April 2, 2018

Via: InfoWorld

Testing is an essential part of developing any application. There are various types of tests. Unit tests are used to check if the output of blocks or units of code conforms to the desired results. Integration tests are used to check if the different parts of the application work as expected when they are assembled together.

In this article I will discuss how we can write and execute integration tests using ASP.Net Core.

Read More on InfoWorld