Add new unit test class in ASP.NET MVC

How to add a new unit test class?

To add a new Test class, right click the Unit Test project and select Add > Unit Test …

This creates a new Unit test class. This can be renamed later on by right clicking and selecting “Rename”.

No comments:

Post a Comment

How to register multiple implementations of the same interface in Asp.Net Core?

 Problem: I have services that are derived from the same interface. public interface IService { } public class ServiceA : IService { ...