NUnit is not the default testing framework when building .NET applications and getting it setup can be a little bit tricky. To help alleviate some of the setup pain this article will walk you though how to get NUnit added to your Solution and show you how to write your first test.
You can use an existing Solution/Project if you have one, but for the sake of this tutorial we are going to create a new Solution so that we have a blank slate.
It's a good idea to isolate your tests from your main project so that you can easily exclude them from running in production. In order to do that we need to create another project inside of our solution.
Installed -> Visual C# -> Web -> Visual Studio 2012
Select "ASP.NET
Empty Web Application" Now that we have our project setup it is time to install NUnit. There are probably several different ways to do this but I think the easiest way is to simply install the NuGet package for NUnit.
Install-Package NUnit NUnitExample.Tests
and press enterThe console should have output that looks something like:
Installing 'NUnit 2.6.4'.
Successfully installed 'NUnit 2.6.4'.
Adding 'NUnit 2.6.4' to NUnitExample.
Successfully added 'NUnit 2.6.4' to NUnitExample.Tests.
We need a place where we can write our test for the Values Controller. To do that we can create an empty class file.
Now we need to setup our test file:
using
NUnit.Framework;
[TestFixture]
ReturnsAListOfValues
[Test]
Before we start writing our test we will need to add a reference to the NUnitExample project and add another using statement.
Add -> Reference...
using
NUnitExample.Controllers;
Since our test is actually creating an instance of a controller we need to add a reference to the .NET library responsible for HTTP stuff, like controllers. Open up the Package Manage Console again and install the following package:
Install-Package Microsoft.AspNet.WebApi.Core --Version 5.2.2 NUnitExample.Tests
Note: Version 5.2.2 of WebApi.Core is what I currently have installed in the NUnitExample project. To verify what version you have installed you can open up the NUnitExample project, click on References and click for System.Web.Http. In the Properties window under Version you can see which version you have installed.
Now at the top of our file we can add another using statement:
using System.Web.Http;
Your file should now look like:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
using NUnitExample.Controllers;
using System.Web.Http;
namespace Tests
{
[TestFixture]
class ValuesControllerTests
{
[Test]
public void ReturnsAListOfValues()
{
}
}
}
Now that we finally have everything setup we can begin writing our first test.
Inside of the ReturnsAListOfValues()
method add the following:
string[] expected = { "value1", "value2" };
ValuesController controller = new ValuesController();
var result = controller.Get();
Assert.AreEqual(expected, result);
For the first line we created our expected result. In the middle section we created a new instance of the Values controller and then called the .Get() method. On the last line we check to see if the two results are equal.
Before we can run the test we actually need to install the NUnit Test Runner.
Tools -> Extensions and Updates
Now to run our tests, from the top menu in Visual Studio, select TEST -> Run ->
All Tests
. Once the test has finished running you should see a green check mark
next to our test signifying that the test passed.
Writing the actual test is not too bad, but getting everything set up can take some effort. The good news is that once you have everything setup you shouldn't have to do it again.