Is there a way for an nunit test to end and tell the test runner that it should be considered skipped/ignored, rather than succeeded or failed?
My motivation for thi
Assert.Ignore();
is specifically what you're asking for, though there is also:
Assert.Inconclusive();