0

我正在运行一个运行 junit 测试的 Ant 任务。我希望将测试结果输出到 XML。我愿意:

<target name="test" depends="clean,compile">
    <junit showoutput="yes" fork="true">
        <classpath refid="test.classpath" />
        <formatter type="plain" usefile="false" />
        <batchtest  todir="${test.results.dir}">
            <fileset dir="${tests.dir}">
                <include name="**/*TestSuite.java"/>
            </fileset>
        </batchtest>
    </junit>
</target>

但是什么都没有输出。我做错了什么?

4

1 回答 1

1

您必须将格式化程序的类型设置为xml.

<formatter type="xml" usefile="false" />

usefile如果要将输出写入文件,请删除该属性。

<formatter type="xml" />
于 2013-10-10T20:49:58.930 回答