我有很多的測試,在下面的JUnit任務失敗。Junit的Ant任務,輸出堆棧跟蹤
<target name="test-main" depends="build.modules" description="Main Integration/Unit tests">
<junit fork="yes"
description="Main Integration/Unit Tests"
showoutput="true"
printsummary="true"
outputtoformatters="true">
<classpath refid="test-main.runtime.classpath"/>
<batchtest filtertrace="false" todir="${basedir}">
<fileset dir="${basedir}" includes="**/*Test.class" excludes="**/*MapSimulationTest.class"/>
</batchtest>
</junit>
</target>
如何告訴Junit輸出每個測試的錯誤,以便我可以查看堆棧跟蹤並調試問題。
至少有螞蟻1.9.0,您還可以添加格式爲junit任務的孩子。如果您有多個批處理任務,這將會很有幫助。 – 2013-04-16 14:12:19