Is it possible to run nunit tests in a multithreaded fashion? Is there any runner which can provide this?
Before someone jump on "unit test" concept, let me explain: These are not unit tests we are using nunit for functional / integration testing as well, and some of those tests are incredibly slow, got lots of wait state. Therefore multithreading can help them massively.
I know as a last resort I can roll my own multi-threading within the tests but that'll introduce an unrequired overhead.