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) ?
|
1
|
|
|
|
|
|
Simply don't apply the TextFixture attribute on the class. |
||||
|
|
|
|
||
|
|
|
|
Removing the [TestFixture] attribute from the class seems like it would work. |
||
|
|
|
|
Comment out the attribute |
||
|
|
|
|
You can make the whole |
||
|
|
|
|
As suggested, the http://www.nunit.org/index.php?p=ignore&r=2.5 Use |
||
|
|