TextDox-like reports in MbUnit
TextDox-like reports in MbUnit
Submitted by pelikhan on Fri, 23/07/2004 - 14:04.MbUnit supports a new report type, similar to TestDox. This reports creates a simple text file, whith fixture and test case names more human readable.
For example, a Test fixture like
[TestFixture]
public class FooTest
{
[Test]
public void IsASingletonTest() {}
[Test]
public void AReallyLongNameIsAGoodThing() {}
}
MbUnit generates
-- MbUnit.Demo MbUnit MbUnit.Demo Foo - is a singleton - a really long name is a good thing
Available in 2.18.1
