I am making the transition from NUnit to XUnit (in C #), and I wrote some Integrated Tests (IT), which I don’t necessarily want the test runner to run as part of my automatic build process. I usually do this for manual testing, when the complete completion process to the end may not work due to environmental factors (missing data, etc.).
In NUnit, you can mark a test using an Explicit attribute , and it will simply skip the test runner (if you did not mark the test with a specific attribute and told the test runner to explicitly indicate this category).
Does XUnit have a similar way to exclude tests from a test runner?
neumann1990
source share