Build/Test Issues

NUnit Assert.Ignore causes failed test

Started by southward on 8,158 views

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

Post a reply

Log in to reply.