testing

We're Back

March 27, 2018
testing

My hosting provider decided to migrate my account to a new machine. Something got mucked up in the migration causing this blog to no longer work properly. I guess the lesson here is to always test your deployments, even if it’s someone else making the deployment on your behalf.

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. ...