Are there a way that one can ignore unit tests when running NUnit from the command line based on a wildcard?
Say for example I don't want to run any tests that end with IntegrationTest? In that case I would like to say ignore all tests containing *IntegrationTest*
Unfortunately, NUnit does not support the use of wildcards for specifying which tests should or not be executed. As you're using NUnit 2.5.9, you have a few other options for doing something similar:
and use the following command to run your tests:
If you upgrade your version to NUnit 2.6.2, you can also use a separate list of tests in a text file, and run them using