Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ReSharper 单元测试运行程序是否按顺序或并行运行测试(然后,每个测试是否在单独的线程中)?我正在使用 MBUnit 测试框架。
VS2008 + R# 4.5 并行运行测试,前提是您使用 MbUnit 的 Parallelizable 属性将它们标记为这样。如果不这样做,它们将按顺序运行。无论哪种方式,它都不会在不同的线程中一次运行所有测试,因为这会降低测试性能,而是使用有限的线程池。
它是按顺序进行的。(在 VS 2008 中使用 R# 4.0)