我的蚂蚁脚本有问题! 在我的jUnit测试中,我必须使用System.getProperty设置一个String。 当我使用eclipse和vm参数时,一切正常,但是使用ant脚本,我无法传递系统属性......
这是我的蚂蚁片段:
<junit fork="yes" haltonfailure="false" showoutput="true">
<sysproperty key="sdkpath" value="some path"/>
or
<jvmarg value="-Dsdk_path=/some path/"/>
<batchtest fork="false" todir="${execution.home}">
<fileset dir="${basedir}/src">
<include name="**/**Test*.java" />
<exclude name="**/MonkeyTest.java"/>
</fileset>
</batchtest>
<formatter type="xml" usefile="true" />
<classpath refid="test.classpath" />
</junit>
答案 0 :(得分:0)
更改
<batchtest fork="false" todir="${execution.home}">
到
<batchtest todir="${execution.home}">