50

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 this is that I have a few tests that don't apply in certain circumstances, but this can't be determined until the test (or maybe the fixture) starts running.

Obviously in these circumstances I could just return from the test and allow it to succeed, but (a) this seems wrong and (b) I'd like to know that tests have been skipped.

I am aware of the [Ignore] attribute, but this is compiled-in. I'm looking for a run-time, programmatic equivalent. Something like:

if (testNotApplicable)
    throw new NUnit.Framework.IgnoreTest("Not applicable");

Or is programmatically skipping a test just wrong? If so, what should I be doing?

Pang
  • 9,564
  • 146
  • 81
  • 122
Andy Johnson
  • 7,938
  • 4
  • 33
  • 50

2 Answers2

51
Assert.Ignore();

is specifically what you're asking for, though there is also:

Assert.Inconclusive();
AdaTheDev
  • 142,592
  • 28
  • 206
  • 200
  • 2
    Thanks! I can't believe I missed Assert.Ignore, but it just what I need. It looks like Assert.Inconclusive was introduced in nunit 2.5 and, since I'm still using 2.4.8, I at least have an excuse for not knowing about that one... – Andy Johnson Nov 04 '10 at 10:19
2

I am having a TestInit(), TestInitialize method where there is a condition like:

    //This flag is the most important.False means we want to just ignore that tests
    if (!RunFullTests)
        Assert.Inconclusive();

RunFullTests is a global Boolean variable located in a constant class. If we set this to false the whole test class will be ignored and all the tests under this class will be ignored.

I use this when there are integration tests.

Giannis Grivas
  • 3,374
  • 1
  • 18
  • 38