我正在编写我的 build.xml。但是,我的 junit 任务似乎出了点问题。当我运行我的 junit 任务时。我可以构建成功,但 junit 报告仅显示运行 1 次测试时出错。但是我有10多个测试。所以我想知道我的junit任务是否运行了一些东西。这是我的代码。
<property name="src.dir" value="src"/>
<property name="bin.dir" value="bin"/>
<property name="dest.dir" value="dest"/>
<property name="test.dir" value="test/>
<property name="lib.dir" value="lib"/>
<path id="classpath">
<pathelement location="${lib.dir}/junit-4.11.jar"/>
<pathelement location="${lib.dir}/ant-junit4.jar"/>
</path>
<target name="test" depends="compile">
<junit printsummary="yes" haltonfailure="no">
<classpath>
<pathelement location="${bin.dir}"/>
<path refid="classpath"/>
</classpath>
<formatter type="plain" usefile="false"/>
<batchtest fork="yes">
<fileset dir="${test.dir}" includes="*Test*.java"/>
</batchtest>
</junit>
</target>
我无法弄清楚出了什么问题,所以有人可以帮助我吗?