查看这个问题的非正式规范,我注意到没有针对错误的元素。这只是一个疏忽吗?CruiseControl似乎从某处提取错误。
<testsuites>
<testsuite name="name" errors="1" failures="0">
<testcase name="name">
<error>Some error message</error>
</testcase>
</testsuite>
</testsuites>
您可以查看这篇文章。本文中修改后的示例:
<target name="test">
<junit printsummary="withOutAndErr" fork="off" haltonfailure="no">
<classpath refid="classpath.test"/>
<formatter type="brief" usefile="false"/>
<test name="packagename.MyTest"/>
</junit>
</target>
您可以在控制台(或报告文件)中看到来自junit测试的所有消息。您可以在ant网站上阅读有关printsummary, haltonfailure
和其他属性的信息。
另一个有用的链接
我知道已经有一段时间了,但是,有一个错误元素,您可以区分错误和失败:
<?xml version="1.0" encoding="utf-8"?>
<testsuites errors="1" failures="2" tests="5" time="10">
<testsuite errors="1" failures="2" id="0" name="TestSuite1" tests="4" timestamp="2015-04-20T00:00:00">
<testcase classname="ModuleIAmTesting" name="testDoNothingDoesNothing" time="1"/>
<testcase classname="ModuleIAmTesting" name="testLongThingTakesALongTime" time="5"/>
<testcase classname="ModuleIAmTesting" name="testSkyIsBlue" time="1">
<failure message="Test testSkyIsBlue() failed!" type="failure">
It's storming; sky is gray today. Failure output, details, etc.
</failure>
</testcase>
<testcase classname="ModuleIAmTesting" name="testIsNotStorming" time="1">
<failure message="Test testIsNotStorming() failed!" type="failure">
Another failure. Failure output, details, etc.
</failure>
</testcase>
<testcase classname="ModuleIAmTesting" name="testCreatePlugin" time="2">
<error message="Error while executing test testCreatePlugin()!" type="error">
Unhandled catastrophic exception in ModuleIAmTesting.cpp at like 4420, details, etc.
</error>
</testcase>
</testsuite>
</testsuites>
重要的部分是<error>
标签和errors
属性到<testsuite>
。