Click here to Skip to main content
Click here to Skip to main content

Easy Debugging of NUnit Tests from Visual Studio 2008 Professional

By , 23 Jun 2009
 

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.

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.

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

About the Author

Tommi Laukkanen
Architect
Finland Finland
Member
Web and rich client solutions since 2002 with .NET and Java.
 
Open source contributor to Visual Nunit, OpenSimulator, MXP protocol and IdealistViewer.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questioncan't step through codemembergary-s14 Apr '12 - 9:55 
QuestionRe: can't step through codememberAndreas Gieriet26 Dec '12 - 12:20 
QuestionVery nice tool! just one questionmemberpaul.vencill5 May '11 - 5:34 
Generalvisual NUnit can't find unit testsmemberx-coder200710 Jan '11 - 1:09 
GeneralCan't run tests - please helpmemberbszom28 Oct '10 - 5:40 
GeneralRe: Can't run tests - please helpmembernaughton8 Aug '12 - 14:28 
GeneralVisual Nunit 2010 1.1.7 ReleasedmemberTommi Laukkanen9 Oct '10 - 21:55 
GeneralRe: Visual Nunit 2010 1.1.7 ReleasedmemberScythal31 Dec '10 - 5:41 
GeneralStopping at breakpointsmemberMember 292366017 Aug '10 - 15:14 
GeneralRe: Stopping at breakpointsmemberTommi Laukkanen9 Oct '10 - 21:53 
GeneralDebugging of NUnit tests:VS 2010, Visual NUnit and project's config filememberlevenyu16 Aug '10 - 12:02 
GeneralRe: Debugging of NUnit tests:VS 2010, Visual NUnit and project's config filememberSRM196929 Sep '10 - 17:45 
GeneralRe: Debugging of NUnit tests:VS 2010, Visual NUnit and project's config filememberTommi Laukkanen29 Sep '10 - 18:18 
QuestionCould you make a VS 2010 version please?mvpOmar Al Zabir5 May '10 - 5:12 
AnswerRe: Could you make a VS 2010 version please?memberTommi Laukkanen5 May '10 - 5:47 
GeneralVisual Nunit 2010 1.1 and Visual Nunit 2008 1.0.2 releasedmemberTommi Laukkanen19 Dec '09 - 4:20 
QuestionTests not showing up?memberBernard O'Flynn26 Nov '09 - 23:36 
AnswerRe: Tests not showing up?memberDan Neely7 Jan '10 - 5:18 
AnswerRe: Tests not showing up?memberjfh1089 Jan '10 - 7:13 
AnswerRe: Tests not showing up?memberom29721 Jan '10 - 23:59 
GeneralBeta Release of Visual Nunit support for Visual Studio 2010memberTommi Laukkanen6 Nov '09 - 17:21 
GeneralVisual Nunit 1.0.1 ReleasedmemberTommi Laukkanen1 Nov '09 - 6:53 
GeneralVisual Nunit Runner stopped workingmembertomasz pr.30 Jul '09 - 1:26 
GeneralRe: Visual Nunit Runner stopped workingmemberTommi Laukkanen30 Jul '09 - 20:11 
GeneralRe: Visual Nunit Runner stopped workingmembertomasz pr.30 Jul '09 - 21:56 

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

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 24 Jun 2009
Article Copyright 2009 by Tommi Laukkanen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid