NUnit

Quelltext:

using NUnit.Framework;
[TestFixture] public class Test {
    [Test] public void check() { 
        Assert.IsTrue (1+2 == 3);     
    } 
}
Kompilation:
gmcs -r:nunit.framework -t:library Test.cs
Ausführung:
nunit-console Test.dll

Weitere Beispiele: benutze All, Any zur Spezifikation von Halbgruppe, Gruppe.



Johannes Waldmann 2011-07-07