I would like to know if Resharper Unit Test runner runs unit tests sequentially or in parallell (each on its own thread). I am using MBUnit test framework.

Thanks.

link|improve this question
feedback

2 Answers

VS2008 + R# 4.5 runs tests in parallel provided that you mark them as such with MbUnit's Parallelizable attribute. If you don't, they will be run sequentially. Either way, it won't run all your tests at once in different threads since that would kill test performance, but rather uses a limited thread pool.

link|improve this answer
Correct. You can configure the number of threads in play using [DegreeOfParallelism(n)] – Jeff Brown Mar 16 '10 at 19:28
feedback

It does so sequentailly. (using R# 4.0 with VS 2008)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.