I have a .NET project with 2000 unit tests written in NUnit, that I would like to migrate to Mono.
The project is recompiled using Mono 3.0.2/MonoDevelop 3.0.5 on Mac OS X. I am able to run all unit tests using the integrated test runner of MonoDevelop.
However, I have a lot of tests marked "LongRunning" using TestCaseAttribute
:
[TestCase(1, Category="LongRunning")]
but I couldn't exclude them using Unit Test Options (from menu View -> Pads -> Unit Tests -> ...).
Including/excluding categories options are there but trying them has no effect.
How do I exclude LongRunning unit tests using MonoDevelop test runner?