Hi guys,
I'm using version of mbUnit which comes with TestDriven.NET 1.0 and
finally need to use categories for my tests but hit a roadblock.
I didn't find a Wiki article/docs on what attribute to use so I assumed
TestCategory as the attr name and it didn't complain. Can anyone
confirm/deny this is correct usage?
[Test]
[TestCategory("Bad Arguments")]
[ExpectedException(typeof(ArgumentNullException))]
public void TestCopyWithBadHref()
{
. . .
}
Alas, the GUI didn't pick up my category. Any advice?
John