简体   繁体   中英

Does the ReSharper unit test runner run tests sequentially or in parallel with MbUnit?

Does the ReSharper unit test runner run tests sequentially or in parallel (and then, is each test in a separate thread)? I am using MBUnit test framework.

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM