मेरे पास निम्नलिखित जुनीट टास्क में कई परीक्षण विफल हो रहे हैं।जूनिट चींटी टास्क, आउटपुट स्टैक ट्रेस
<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>
मैं कैसे करूँ ताकि मैं स्टैक ट्रेस और मुद्दों डिबग देख सकते हैं प्रत्येक परीक्षा के लिए त्रुटियों ouput को JUnit बताओ।
कम से कम चींटी 1.9.0 के साथ, आप जूनिट कार्य के बच्चे के रूप में फॉर्मेटर भी जोड़ सकते हैं। यदि आपके पास कई बैच कार्य हैं तो यह सहायक होगा। –