Unit Testing for C# Code


Unit testing is a key for C# code since it can help in maintaining code in the development process. It lets you know about the problems in the development cycle.

With Unit Testing, you can make the code reliable and reusable.

One of the fundamental principles of adopting unit testing is to follow a TDD (Test Driven Development) approach where we have to write tests case first, and then write the simple code that will make the test pass

For Unit testing, you need to work with Microsoft Testing tools, which is what we call MS Unit Test.

To create a Unit Test, go to Solution Explorer, right-click, go to New and click “New Project”.

Now select “Unit Test Project” −

Unit Test Project

Set a name for the Test and click Ok.

New Unit Test project is created.

Now right click on the new unit test and add the following reference −

Microsoft.VisualStudio.QualityTools.UnitTestFramework

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 30-Jul-2019

843 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements