I currently have some unit tests running against all of our controllers and actions, and an additional test for some "temporary exemptions" that we allow (but that receive other checks as a result).
We were able to remove all of our temporary exemptions (a good thing), but the functionality needs to remain in place for future use.
However, since the TestCaseSource
is now empty, NUnit fails the test with "no arguments were provided".
I don't necessarily disagree with the behavior, but given my situation, is there any way to ignore the test only when the TestCaseSource
is empty, rather than failing with this message?