使用 NANT 并行运行 NUnit 测试
我们在不同的组件下进行不同类别的测试。并行运行它们的最佳方法是什么?我知道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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为,根据记忆,您需要 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.