Click here to Skip to main content
15,867,453 members
Articles / DevOps / Testing

Unit Testing Using NUnit

Rate me:
Please Sign up or sign in to vote.
4.83/5 (64 votes)
25 Jul 2013GPL35 min read 460.1K   10.6K   125   46
Unit Testing using NUnit.

Introduction

In this article, I am giving a basic description about Unit testing and getting started with a unit testing framework for .NET, NUnit. This article is an introduction to unit testing and explains a tool used for unit testing.

What is Unit Testing?

Unit testing is a kind of testing done at the developer side. It is used to test methods, properties, classes, and assemblies. Unit testing is not testing done by the quality assurance department. To know where unit testing fits into development, look at the following image:

Image 1

Figure: Unit Testing in Application Development

Unit testing is used to test a small piece of workable code (operational) called unit. This encourages developers to modify code without immediate concerns about how such changes might affect the functioning of other units or the program as a whole. Unit testing can be time consuming and tedious, but should be done thoroughly with patience.

What is NUnit?

NUnit is a unit testing framework for performing unit testing based on the .NET platform. It is a widely used tool for unit testing and is preferred by many developers today. NUnit is free to use. NUnit does not create any test scripts by itself. You have to write test scripts by yourself, but NUnit allows you to use its tools and classes to make unit testing easier. The points to be remembered about NUnit are listed below:

  1. NUnit is not an automated GUI testing tool.
  2. It is not a scripting language, all tests are written in .NET supported languages, e.g., C#, VC, VB.NET, J#, etc.

NUnit is a derivative of the popular testing framework used by eXtreme Programming (XP). It was created by Philip Craig for .NET. It is also available in the name of jUnit for Java code testing.

NUnit works by providing a class framework and a test runner application. They can be downloaded from here. The class framework allows to write test cases based on the application. The test is run using the test runner application downloaded from the above link.

Steps for Using NUnit

First, what one needs to do is download the recent version of the NUnit framework from the above mentioned website.

  1. In development studio, create a new project. In my case, I have created a console application.
  2. In the program.cs file, write the following code:
  3. C#
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Enter two numbers\n");
            int number1;
            int number2;
            number1 = int.Parse(Console.ReadLine());
            number2 = int.Parse(Console.ReadLine());
    
            MathsHelper helper = new MathsHelper();
            int x = helper.Add(number1, number2);
            Console.WriteLine("\nThe sum of " + number1 + 
                " and " + number2 + " is " + x);
            Console.ReadKey();
            int y = helper.Subtract(number1, number2);
            Console.WriteLine("\nThe difference between " + 
                  number1 + " and" + number2 + "  is " + y);
            Console.ReadKey();
        }
    }
    
    public class MathsHelper
    {
        public MathsHelper() { }
        public int Add(int a, int b)
        {
            int x = a + b;
            return x;
        }
    
        public int Subtract(int a, int b)
        {
            int x = a - b;
            return x;
        }
    }
  4. Then to the solution of the project, add a new class library project and name it followed by “.Test” (it is the naming convention used for unit testing). Import the downloaded DLL files into the project and follow the steps given below.
  5. In the newly added project, add a class and name it TestClass.cs.
  6. In the class file, write the following code:
  7. C#
    [TestFixture]
    public class TestClass
    {
        [TestCase]
        public void AddTest()
        {
            MathsHelper helper = new MathsHelper();
            int result = helper.Add(20, 10);
            Assert.AreEqual(30, result);
        }
    
        [TestCase]
        public void SubtractTest()
        {
            MathsHelper helper = new MathsHelper();
            int result = helper.Subtract(20, 10);
            Assert.AreEqual(10, result);
        }
    }
  8. Now open the test runner (test runner is downloaded from the NUnit site along with the NUnit DLLs). In the NUnit API, click File > Open project. A file open dialog appears. Give the path of the NUunit test project DLL. Now run the test. If the test passes, then the following test screen is displayed:
  9. Image 2

    Otherwise, the following screen displays:

    Image 3

Important Attributes

1. [SetUp]

SetUp is generally used for initialization purposes. Any code that must be initialized or set prior to executing a test is put in functions marked with this attribute. As a consequence, it avoids the problem of code repetition in each test.

C#
[SetUp]
public void Xyz()
{
   .
   .
}

The code written in the Xyz method is executed before the test runs and it avoids the call of the code inside this method.

2. [Ignore]

This is the attribute which is used for the code that needs to be bypassed.

3. [ExpectedException]

This attribute is used to test methods that need to throw an exception in some cases. The cases may be FileNotFoundException and others.

C#
[Test]
[ExpectedException(typeof(MissingFileException))]
public void CheckException()
{
......
......
}

The code shouldn't have any Assert statement. On passing the test, the code should throw an exception, otherwise an exception is not thrown.

4. [TearDown]

This is an attribute that acts the opposite of [SetUp]. It means the code written with this attribute is executed last (after passing other lines of code). So, inside this closing is generally done, i.e., closing of file system, database connection, etc.

Mock Objects

A mock object is a simulation of a real object. Mock objects act just as real objects but in a controlled way. A mock object is created to test the behavior of a real object. In unit testing, mock objects are used to scrutinize the performance of real objects. Simply said, a mock object is just the imitation of a real object. Some important characteristics of mock objects are that they are lightweight, easily created, quick and deterministic, and so on.

Stub Object

A stub object is an object which implements an interface of a component. A stub can be configured to return a value as required. Stub objects provide a valid response, but it is of static nature meaning that no matter what input is passed in, we always get the same response.

Mock Object vs. Stub Object

Mock objects vary from stub objects in some ways. They are listed below:

  1. The first distinct factor is that mock objects test themselves, i.e., they check if they are called at the proper time in the proper manner by the object being tested. Stubs generally just return stubbed data, which can be configured to change depending on how they are called.
  2. Secondly, mock objects are generally lightweight relative to stubs with different instances set for mock objects for every test whilst stubs are often reused between tests.

Conclusion

These are the basic steps for using the NUnit framework for unit testing. Happy coding.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer
Nepal Nepal
I am a software developer with knowledge of C, C++, PHP, MySQL, C#.Net, ADO.Net, MSSQL Server, Crystal Reports, Asp.Net, Oracle, Asp.Net MVP, MVC, jQuery, javascript, WebService, WCF, Entity Framework and so on. I love to play on New Technologies.

Comments and Discussions

 
AnswerRe: MathsHelper object can not be instantiate Pin
ankitjc5-Mar-13 9:47
ankitjc5-Mar-13 9:47 
QuestionVery nice introduction for a beginner Pin
FourCrate29-Oct-12 9:33
FourCrate29-Oct-12 9:33 
AnswerRe: Very nice introduction for a beginner Pin
Neerajan Lamsal25-Jul-13 0:26
Neerajan Lamsal25-Jul-13 0:26 
GeneralMy vote of 5 Pin
Kanasz Robert28-Sep-12 5:54
professionalKanasz Robert28-Sep-12 5:54 
GeneralRe: My vote of 5 Pin
Neerajan Lamsal25-Jul-13 0:26
Neerajan Lamsal25-Jul-13 0:26 
QuestionCool NUnit Pin
Swinkaran16-Sep-12 20:58
professionalSwinkaran16-Sep-12 20:58 
AnswerRe: Cool NUnit Pin
Neerajan Lamsal25-Jul-13 0:27
Neerajan Lamsal25-Jul-13 0:27 
QuestionResponse.. Pin
akanksha11699910-Aug-12 0:07
akanksha11699910-Aug-12 0:07 
AnswerRe: Response.. Pin
Neerajan Lamsal25-Jul-13 0:23
Neerajan Lamsal25-Jul-13 0:23 
QuestionI vote 4 Pin
Member 701715429-Jul-12 12:27
Member 701715429-Jul-12 12:27 
GeneralMy vote of 5 Pin
Nikhil_S28-Mar-12 0:14
professionalNikhil_S28-Mar-12 0:14 
GeneralRe: My vote of 5 Pin
Neerajan Lamsal25-Jul-13 0:22
Neerajan Lamsal25-Jul-13 0:22 
QuestionMy 5 Pin
Jephunneh Malazarte18-Jan-12 22:35
Jephunneh Malazarte18-Jan-12 22:35 
AnswerRe: My 5 Pin
Neerajan Lamsal21-Feb-12 0:54
Neerajan Lamsal21-Feb-12 0:54 
GeneralRe: My 5 Pin
Jephunneh Malazarte21-Feb-12 11:20
Jephunneh Malazarte21-Feb-12 11:20 
GeneralRe: My 5 Pin
Neerajan Lamsal25-Jul-13 0:14
Neerajan Lamsal25-Jul-13 0:14 
GeneralMy vote of 4 Pin
jawed.ace13-Apr-11 1:52
jawed.ace13-Apr-11 1:52 
GeneralRe: My vote of 4 Pin
Neerajan Lamsal17-Apr-11 22:10
Neerajan Lamsal17-Apr-11 22:10 
GeneralMy vote of 3 Pin
Perry Bruins12-Apr-11 20:20
Perry Bruins12-Apr-11 20:20 
GeneralRe: My vote of 3 Pin
Neerajan Lamsal17-Apr-11 22:12
Neerajan Lamsal17-Apr-11 22:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.