Click here to Skip to main content
15,881,757 members
Articles / Programming Languages / C#

Easy Debugging of NUnit Tests from Visual Studio 2008 Professional

Rate me:
Please Sign up or sign in to vote.
4.09/5 (8 votes)
23 Jun 2009Apache1 min read 158.2K   42   54
How to easily debug NUnit tests in Visual Studio 2008 professional edition

Introduction

This article describes a convenient way of debugging NUnit tests using open source plugin to Visual Studio 2008. Many open source and cross platform projects choose NUnit testing framework for mono and nant support.

Background

Visual Nunit plugin for Visual Studio 2008 was developed to speed up development of MXP protocol reference implementation. Being able to debug unit tests easily from integrated development environment is a big efficiency factor.

Installation

  1. Download the latest release from here.
  2. Run the installer.
  3. Start Visual Studio 2008.
  4. Select from Menu View->Other Windows->NUnit View.
  5. Place the view to location of your choice.

Image 1

Debugging Process

The debugging with Visual Nunit is achieved by simply double clicking the test at NUnit View. To create test cases to your project, do the following steps:

  1. Download NUnit 2.5 from here.
  2. Add nunit.framework.dll to your projects references.
  3. Add test case to the project (See example below).
  4. Make sure your project dependencies have copy local properties set.
  5. Build the project.
  6. To start debugging, click the arrow button of a test row in the NUnit View.
  7. Proceed as normal with Visual Studio Debugging.

Stopping debug will terminate the nunit runner process if your unit test is hanging or if you do not wish to wait until it is completed.

C#
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using System.Diagnostics;
using System.Threading;

namespace NunitTests
{
    [TestFixture]
    public class ExampleTestFixture
    {
        [Test]
        public void TestSuccess()
        {
            Trace.TraceInformation("Test trace.");
        }

        [Test]
        public void TestException()
        {
            throw new Exception("Test Exception");
        }

        [Test]
        public void TestAssert()
        {
            Assert.Fail("Test Assert");
        }

        [Test]
        public void TestHang()
        {
            Thread.Sleep(10000);
        }
    }
}

Points of Interest

Visual Nunit was written with Microsoft Visual Studio 2008 SDK. The project type is Visual Studio Integration Package and the sources are available as open source project from here.

History

  • 21st June 2009 - Initial version

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Architect
Finland Finland
Web and rich client solutions since 2002 with .NET and Java.

Open source contributor to Visual Nunit, OpenSimulator, MXP protocol and IdealistViewer.

Comments and Discussions

 
Questioncan't step through code Pin
gary-s14-Apr-12 9:55
gary-s14-Apr-12 9:55 
QuestionRe: can't step through code Pin
Andreas Gieriet26-Dec-12 12:20
professionalAndreas Gieriet26-Dec-12 12:20 
QuestionVery nice tool! just one question Pin
paul.vencill5-May-11 5:34
paul.vencill5-May-11 5:34 
Generalvisual NUnit can't find unit tests Pin
x-coder200710-Jan-11 1:09
x-coder200710-Jan-11 1:09 
GeneralCan't run tests - please help Pin
bszom28-Oct-10 5:40
bszom28-Oct-10 5:40 
GeneralRe: Can't run tests - please help Pin
naughton8-Aug-12 14:28
naughton8-Aug-12 14:28 
GeneralVisual Nunit 2010 1.1.7 Released Pin
Tommi Laukkanen9-Oct-10 21:55
Tommi Laukkanen9-Oct-10 21:55 
GeneralRe: Visual Nunit 2010 1.1.7 Released Pin
Scythal31-Dec-10 5:41
Scythal31-Dec-10 5:41 
GeneralStopping at breakpoints Pin
Member 292366017-Aug-10 15:14
Member 292366017-Aug-10 15:14 
GeneralRe: Stopping at breakpoints Pin
Tommi Laukkanen9-Oct-10 21:53
Tommi Laukkanen9-Oct-10 21:53 
GeneralDebugging of NUnit tests:VS 2010, Visual NUnit and project's config file Pin
levenyu16-Aug-10 12:02
levenyu16-Aug-10 12:02 
GeneralRe: Debugging of NUnit tests:VS 2010, Visual NUnit and project's config file Pin
SRM196929-Sep-10 17:45
SRM196929-Sep-10 17:45 
GeneralRe: Debugging of NUnit tests:VS 2010, Visual NUnit and project's config file Pin
Tommi Laukkanen29-Sep-10 18:18
Tommi Laukkanen29-Sep-10 18:18 
QuestionCould you make a VS 2010 version please? Pin
Omar Al Zabir5-May-10 5:12
Omar Al Zabir5-May-10 5:12 
AnswerRe: Could you make a VS 2010 version please? Pin
Tommi Laukkanen5-May-10 5:47
Tommi Laukkanen5-May-10 5:47 
GeneralVisual Nunit 2010 1.1 and Visual Nunit 2008 1.0.2 released Pin
Tommi Laukkanen19-Dec-09 4:20
Tommi Laukkanen19-Dec-09 4:20 
QuestionTests not showing up? Pin
Bernard O'Flynn26-Nov-09 23:36
Bernard O'Flynn26-Nov-09 23:36 
AnswerRe: Tests not showing up? Pin
Dan Neely7-Jan-10 5:18
Dan Neely7-Jan-10 5:18 
AnswerRe: Tests not showing up? Pin
JohnHolliday9-Jan-10 7:13
JohnHolliday9-Jan-10 7:13 
AnswerRe: Tests not showing up? Pin
om29721-Jan-10 23:59
om29721-Jan-10 23:59 
GeneralBeta Release of Visual Nunit support for Visual Studio 2010 Pin
Tommi Laukkanen6-Nov-09 17:21
Tommi Laukkanen6-Nov-09 17:21 
GeneralVisual Nunit 1.0.1 Released Pin
Tommi Laukkanen1-Nov-09 6:53
Tommi Laukkanen1-Nov-09 6:53 
GeneralVisual Nunit Runner stopped working Pin
tomasz pr.30-Jul-09 1:26
tomasz pr.30-Jul-09 1:26 
GeneralRe: Visual Nunit Runner stopped working Pin
Tommi Laukkanen30-Jul-09 20:11
Tommi Laukkanen30-Jul-09 20:11 
GeneralRe: Visual Nunit Runner stopped working Pin
tomasz pr.30-Jul-09 21:56
tomasz pr.30-Jul-09 21:56 

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.