ReSharper 单元测试运行程序是按顺序运行测试还是与 MbUnit 并行运行测试?

发布于 2024-08-25 16:48:34 字数 73 浏览 6 评论 0原文

ReSharper 单元测试运行程序是否按顺序或并行运行测试(然后,每个测试都在单独的线程中)?我正在使用 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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

狂之美人 2024-09-01 16:48:34

VS2008 + R# 4.5 并行运行测试,前提是您使用 MbUnit 的 Parallelizable 属性将它们标记为并行。如果不这样做,它们将按顺序运行。无论哪种方式,它都不会在不同的线程中同时运行所有测试,因为这会降低测试性能,而是使用有限的线程池。

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.

胡渣熟男 2024-09-01 16:48:34

它依次进行。 (使用 R# 4.0 和 VS 2008)

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文