使用 NUnit 进行报告
我想在从 NUnit 执行测试后获得一份管理报告。 通过查看 NUnit,它似乎生成 XML 格式的输出。 请任何人都可以提出如何实现这一目标的建议。
I want to have a managerial report after executing tests from NUnit. By looking into NUnit, It seems as it generates the output in XML format. Plz any one can give suggesttion of how to accomplish this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 XSLT 将 xml 转换为更漂亮的内容。
You could use XSLT to transform your xml in to something more pretty.
您可以使用 NUnit 网站上提供的工具:NUnitResults 或 NUnit-Summary。 我还没有尝试过其中任何一个,但这就是我要开始的地方。
您可能还需要考虑使用 CruiseControl.NET 将单元测试作为自动构建的一部分来运行。 CruiseControl 为每个构建生成非常有用的摘要报告,报告运行的测试数量、失败次数、所花费的时间以及所有失败的详细信息。
You could use the tools provided on the NUnit web site: NUnitResults or NUnit-Summary. I haven't tried either of them but that's where I would start.
You might also want to consider running your unit tests as part of an automated build using CruiseControl.NET. CruiseControl produces quite useful summary reports for each build, reporting the number of tests run, the number of failures, the time it took, plus details for all failures.