Well I have been thinking about this for a while, ever since I was introduced to TDD.
Which would be the best way to build a \"Hello World\" application ? which would print \"H
using NUnit.Framework;
using System.Diagnostics;
[TestFixture]
public class MyTestClass {
[Test]
public void SayHello() {
string greet = "Hello World!";
Debug.WriteLine(greet);
Assert.AreEqual("Hello World!", greet);
}
}