使用 NANT 并行运行 NUnit 测试

发布于 2024-08-13 06:25:07 字数 67 浏览 2 评论 0原文

我们在不同的组件下进行不同类别的测试。并行运行它们的最佳方法是什么?我知道ant中有一个任务,NANT中有这样的任务吗?

We have different categories of tests under various assemblies. What is the best possible way to run them in parallel? I am aware of a task in ant, is there any such task in NANT?

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

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

发布评论

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

评论(1

清君侧 2024-08-20 06:25:07

我认为,根据记忆,您需要 NUnit 2.5.x 或更高版本才能运行并行单元测试,我还记得这是一个付费产品。

但是,如果您使用 MbUnit,它附带的 Gallio 测试运行程序会并行运行测试,并且是免费的。

无论哪种方式,您都可以让 NAnt 调用单元测试运行程序(NCover/NUnit 或 Gallio),并从那里运行它们,而不是直接从 NAnt 运行,因为这只是一种脚本语言,但具有强大的调用能力其他流程。

I think, from memory, you need NUnit version 2.5.x or above to run parallel unit tests, which I also remember being a paid-for product.

However, if you use MbUnit, the Gallio test-runner that it comes with runs the tests in parallel and is free.

Either way, you get NAnt to call the unit test runner (either NCover/NUnit or Gallio) and it runs them from there, and not direct from NAnt as this is just a scripting language, but one with significant power to call-out to other processes.

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