已運行數月的Ant junit任務突然失敗,因爲曾經發現類的NoClassDefFoundError。有沒有辦法顯示在junit任務中構建的類路徑?如何在Ant Junit任務中顯示類路徑構建
<target name="basic-junit-test" description="Run a single JUnit test. ">
<junit printsummary="yes" fork="no" haltonfailure="yes">
<classpath>
<pathelement location="target/WEB-INF/lib/log4j-1.2.16.jar"/>
.
. many other pathelements
.
</classpath>
<test name="com.mycompany.command.TestUNLOCKACCOUNTCommand" outfile="${report.dir}/junit_test_results" />
</junit>
</target>
Mark,感謝您的回覆。我會試一試。你能告訴我如何在調試模式下從Eclipse運行Ant嗎? – user903724
要在調試模式下在Eclipse中運行Ant,請在Ant編輯器中使用=> AntFile |上下文菜單|運行爲| 2 Ant Build ... |主標籤|參數=> -debug然後運行 – Rebse
Rebse,這是非常有用的。在調試模式下打印的信息正是我所需要的。 – user903724