Does the ReSharper unit test run in a row sequentially or in parallel with MbUnit?

Does the run-run ReSharper unit test run sequentially or in parallel (and then each test in a separate thread)? I am using the MBUnit testing environment.

+4
source share
2 answers

VS2008 + R # 4.5 runs the tests in parallel, provided that you mark them as such with the MbUnit Parallelizable attribute. If you do not, they will be executed sequentially. In any case, it will not run all your tests at once in different threads, as this will lead to loss of test performance, but rather uses a limited pool of threads.

+4
source

This happens sequentially. (using R # 4.0 with VS 2008)

0
source

Source: https://habr.com/ru/post/1304255/


All Articles