#1060
05 Feb 2012 16:46 UTC
The NUnit command
Assert.Ignore("This Test hits database");
causes NCrunch to falsely indicate a Failed test.
To duplicate, add the following test.
[Test]
public void AssertIgnoreFalseFailure()
{
Assert.Ignore("This Test hits database");
}
Edited
05 Feb 2012 16:46 UTC
#1064
05 Feb 2012 21:25 UTC
Hi, thanks for posting.
The reason for this is that NCrunch doesn't make use of an 'Inclusive' status to define tests that make use of Ignore. There's some more information about plans here in this thread:
http://forum.ncrunch.net/yaf_postst11_Problem-with-NUnit-TestCase-attribute.aspx
Cheers,
Remco
Edited
05 Feb 2012 21:26 UTC