I have a set of integration tests written in C # and NUnit, and I want to run them in parallel on a build machine. How can I do it? In a similar question, the decision made was:
- Create your own test runner
- Move to MBUnit
There is also the NUnit.MultiCore project, but itβs in the Alpha version, which will be scary to use in production ... Or run several standard NUnit runners in parallel using the build capabilities, which is a workaround and not a long-term solution.
Has anything changed so far? I would like to stay with NUnit, and I'm not too sure how easy it is to create your own test runner.
source share