Wrt Nunit; Is there a mechanism for conditionally ignoring a specific test case?
Something in the lines:
[TestCase(1,2)] [TestCase(3,4, Ignore=true, IgnoreReason="Doesn't meet conditionA", Condition=IsConditionA())] public voidTestA(int a, int b)
So, is there such a mechanism or the only way to do this is to create a separate test for each case and make Assert.Ignore in the test?
source share