vote up 1 vote down star
1

I can add an attribute on a test to ignore it

[Test]
[Ignore("Foo Bar")]

Is there anyway to ignore all tests in a file (at the TestFixture level) ?

flag

6 Answers

vote up 4 vote down check

Simply don't apply the TextFixture attribute on the class.

link|flag
2  
By not applying the attribute you're ignoring the fact that there are test methods within this class that aren't being tested for a reason. You should use [TestFixture, Ignore("reason")] to supply the output of the test results with a reason why they're ignored. Deleting/removing it is obfuscating the reason altogether when it probably makes sense to convey this to other developers. – Chris Missal Aug 4 at 5:49
vote up 2 vote down
[TestFixture, Ignore("reason")]
link|flag
vote up 1 vote down

Removing the [TestFixture] attribute from the class seems like it would work.

link|flag
vote up 0 vote down

Comment out the attribute

link|flag
vote up 0 vote down

You can make the whole TestFixture "on-demand" by using the [Explicit] attribute. Then it's there when you want it, but only when you explicitly click on it.

link|flag
vote up 0 vote down

As suggested, the [Explicit] attribute works well. You can also simply place the [Ignore()] attribute under the [TestFixture] attribute, as shown in the documentation:

http://www.nunit.org/index.php?p=ignore&r=2.5

Use [Ignore()] if you want the test to be flagged as ignored (and therefore you get the yellow bar if all other tests pass). Use [Explicit] if you want the test to be completely discounted (and therefore you get the green bar if all other tests pass).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.