using NUnit.Framework;
class Code
{
public static string Upper(string s)
return s.ToUpper();
}
[TestFixture]
public class Test
[Test]
public void Test1()
Assert.AreEqual("FOO", Code.Upper("foo"));
public class Program
public static void Main()
var x = new NUnitLite.AutoRun().Execute(new string[]{"--test:Test", "--noc"});