備註:這是繼承代碼,我沒有做任何設置,並且對於項目來說是新的。在Eclipse中調試仙人掌測試
我正在嘗試在Eclipse中爲使用仙人掌的這些單元測試設置遠程調試。我讀了一下(但我似乎無法找到任何真正的信息如何設置)。最近我找到了這裏(http://www.eclipse.org/webtools/community/tutorials/CactusInWTP/CactusInWTP.html),但它只是說調試 - >在服務器上調試,但沒有說它在哪裏調試端口設置或任何東西,我找不到任何關於如何啓用此設置。
只是詢問是否有人在之前設置了它,它確實有助於單步執行代碼而不僅僅是記錄。該插件(http://jakarta.apache.org/cactus/integration/eclipse/runner_plugin.html)看起來很有希望,但我也不知道在哪裏下載它,它沒有鏈接到一個位置-.-
該項目使用螞蟻,仙人掌,我使用Eclipse。由於
編輯 這裏是我使用
<junit fork="no" forkmode="perTest" printsummary="yes" haltonfailure="no" haltonerror="no" failureproperty="tests.failed">
<jvmarg value="-Xdebug" />
<jvmarg value="-Xrunjdwp:transport=dt_socket,address=localhost:8005,server=y,suspend=y" />
<formatter type="xml" usefile="true" />
<formatter type="plain" usefile="false" />
<classpath>
<pathelement location="${clover.jar}"/>
<path refid="cactus.classpath.id" />
<pathelement location="../ejb/src" />
</classpath>
<sysproperty key="cactus.contextURL" value="${cactus.contextURL}"/>
<test name="com.test.AllTests" outfile="TESTS" />
</junit>
我在這裏嘗試了類似和相同的問題,它不會掛起並等待連接。不知道爲什麼。即使這裏的參數http://www.mail-archive.com/[email protected]/msg06580.html似乎沒有工作 – Th3sandm4n 2010-12-22 01:17:32