.NET
nunit.txt
Associated article: Tracing Program Execution & NUnit
Tags: .NET
Published source code accompanying the article by Paul Kimmel in which he examines NUnit and .NET's TraceListeners-- tools that help you eliminate bugs from code. Also see NUNIT.ZIP.
Tracing Program Execution & NUnit
by Paul Kimmel
Listing One
using System;
using System.Diagnostics;
namespace TestMe
{
public class Greetings
{
public static string GetText()
{
Trace.WriteLine("Greetings.GetText called");
return "Hello, World";
}
}
}
Listing Two
using NUnit....


