Hi.
Does anyone know if there is a way to run different [TestMethods] in Visual studio in parallel?
Hi.
Does anyone know if there is a way to run different [TestMethods] in Visual studio in parallel?
NUnit 2.5 has an option to support running unit tests in parallel. That has nothing to do with the unit test framework that's built into VS, but it is possible to run NUnit tests inside VS, with the right plugin.
MSTest in Visual Studio runs unit tests in parallel. When running tests VSTestHost (process that runs the unit tests) executes each unit test on a separate thread.
The Team Test team published a blog post about executing unit tests in parrallel on a multi-cpu/core machine few days ago. You can read the information you're looking for here :
Enjoy!