JUnit XML 格式真的没有错误元素吗?
查看非正式规范:来自这个问题,我注意到没有错误元素。这只是一个疏忽吗? CruiseControl 似乎从某个地方提取错误。
<testsuites>
<testsuite name="name" errors="1" failures="0">
<testcase name="name">
<error>Some error message</error>
</testcase>
</testsuite>
</testsuites>
Looking at the informal spec at from this question, I notice that there is no element for errors. Is that just an oversight? CruiseControl seems to extract errors from somewhere.
<testsuites>
<testsuite name="name" errors="1" failures="0">
<testcase name="name">
<error>Some error message</error>
</testcase>
</testsuite>
</testsuites>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看这篇文章。本文修改后的示例:
您可以在控制台(或报告文件)中查看来自 junit 测试的所有消息
您可以在 中阅读有关
printsummary、haltonfailure
属性和其他属性的信息蚂蚁网站。另一个有用的链接。
You can view this article. The modified sample from this article:
You can see all messages from junit tests in console (or in report file)
You can read about
printsummary, haltonfailure
properties and the other ones at the ant site.The other useful link.
我知道已经有一段时间了,但是,有一个错误元素,您可以区分错误和失败:
重要的部分是
标记和errors 属性为
。I know it's been a while, but, there is an element for errors, and you can distinguish between errors and failures:
The important part is the
<error>
tag and theerrors
attribute to<testsuite>
.