NUnit

NUnit & Parameterized Tests

October 15, 2014
.NET, C#, JUnit, NUnit, testing

What is NUnit and why use it? # NUnit is a .NET port of the popular JUnit test library for Java. It has several advantages that Microsoft’s test framework doesn’t. If you run MS Tests or NUnit tests in visual studio then all your tests appear as a flat list in the test explorer. You only get the method names. If you use the NUnit runner you get the full namespace/class/method hierarchy as seen in the screenshot below. ...