I am looking for ways to run test suites in parallel.
I am aware of .testrunconfig
setting. This allows you to multiplex on the number of CPUs.
I want to run 1000 tests in parallel. This makes sense because I am testing a web service, so 90% of the time spent in a test is waiting for the service to respond.
Any ideas on how to pull this off ? The tests are written for VS, but I am open to running them outside of VS.
Later edit: the Visual Studio test team have added this in VS 2015 Update 1. See Mark Sowul's answer bellow.