如何为同一应用程序并行运行两个 NUnit 控制台运行程序?

发布于 2024-11-28 23:12:14 字数 46 浏览 1 评论 0原文

如何为同一应用程序并行运行 NUnit console.exe。可以这样做吗?

how can I run the NUnit console.exe in parallel for the same application. Is it possible to do that?

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

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

发布评论

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

评论(1

南汐寒笙箫 2024-12-05 23:12:14

基本上,nunit-console 的单个实例使用不同的线程并行运行测试,您可以通过传递 /nothread 命令行参数来禁用它。

编辑:关于图表中讨论的模式详细信息

所以ratty有两个测试DLL并且想要并行运行这两个DLL的测试,我建议创建一个新的解决方案,其中包括两个底层项目并简单地运行单元测试新创建的解决方案,NUUnit 控制台默认会并行运行测试

Basically single instance of nunit-console run tests in parallel using different threads, you can disable this by passing /nothread command line argument.

EDIT: Mode details about discussion in chart

So ratty have two tests DLLs and want to run tests for both DLLs in parallel, I suggested to create a new solution which includes both underlying projects and simply run unit tests for newly created solution, NUNit console will run tests in parallel by default

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