如何为同一应用程序并行运行两个 NUnit 控制台运行程序?
如何为同一应用程序并行运行 NUnit console.exe。可以这样做吗?
how can I run the NUnit console.exe in parallel for the same application. Is it possible to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
基本上,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