I have a unit test, something like this:
[Test]
[Row(1)]
[Row(2)]
[Row(3)] //This value is expected to fail
public void Test_MyMethod(int value)
{
Assert.IsTrue(MyMethod(value));
}
Okay, this is an extremely simple test, but, assume MyMethod
returns False when value is 3. Is there a way to tell MbUnit that Row(3)
will fail, and hence, pass the test. Of course, I want it to fail if the test doesn't fail.. makes sense?
I can just write out another method that tests for failure with Assert.IsFalse
but just wondering if I can achieve the same thing in the same function.
thanks