如何自动生成新的单元测试蚂蚁报告

时间:2017-09-06 07:20:58

标签: java junit ant

我正在使用ant junit为我的单元测试生成报告,所以假设我有一个名为userServiceTest的单元测试,所以在my build.xml文件中我输入了以下内容:

<target name="UserServiceTest">
        <mkdir dir="${junit.output.dir}" />
        <junit fork="yes" printsummary="withOutAndErr">
            <formatter type="xml" />
            <test name="webapp.service.UserServiceTest" todir="${junit.output.dir}" />
            <jvmarg line="-ea" />
            <classpath refid="Web Application.classpath" />
        </junit>
    </target>

现在假设我添加了一个名为productServiceTest的新单元测试类,是否可以在报告中自动生成新的单元测试?

提前谢谢。

1 个答案:

答案 0 :(得分:2)

尝试使用<batchtest>代替<test>

<target name="UserServiceTest">
        <mkdir dir="${junit.output.dir}" />
        <junit fork="yes" printsummary="withOutAndErr">
            <formatter type="xml" />
            <batchtest fork="yes" todir="${junit.output.dir}">
                 <fileset dir="${src.tests}">
                      <include name="webapp.service.*ServiceTest"/> 
                  </fileset>
            </batchtest>
            <jvmarg line="-ea" />
            <classpath refid="Web Application.classpath" />
        </junit>
</target>