在批处理文件中完成 NUnit 测试后运行 NUnit 摘要
我想在成功完成 NUnit 测试程序集后运行 NUnitsummary.exe。 我从批处理文件调用 NUnit,然后我想调用 NUnit 摘要。 这个怎么做?
I want to to run NUnit summary.exe after successful completion of a NUnit Tests assembly. I am calling NUnit from a batch file and then I want to call NUnit summary. How to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在批处理文件中调用 nunit.console.exe 之后添加 nunit Summary.exe 即可。 如果您想要更多的控制权,您应该检查 Powershell,这将使您在测试运行后更容易检查 results.xml 文件是否存在。
Just add nunit summary.exe after the call to nunit.console.exe in your batch file. If you want more control than that you should checkout Powershell which would make it much easier to check if the results.xml file exists after your test run.