Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / C#

Debugging NUnit Test Scripts

,
Rate me:
Please Sign up or sign in to vote.
4.63/5 (26 votes)
24 Feb 20045 min read 110.5K   715   42  
How to debug NUnit Test Scripts
In this article, I show you a way to debug your NUnit test scripts. This trick lets you write test scripts only once and use them twice, for debugging and for unit testing.
// LibraryATests.cs

#if (DEBUG)

using System;
using NUnit.Framework;

namespace LibraryA
{
	[TestFixture]
	public class LibraryATests
	{
		[Test]
		public void Add() 
		{
			ClassA classA=new ClassA();
			Assertion.Assert(classA.Add(10,20)==30);
		}
	}
}

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Founder Wischner Ltd
United Kingdom United Kingdom
Writing code since 1982 and still enjoying it.

Written By
Web Developer
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions