我正在使用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
的新单元测试类,是否可以在报告中自动生成新的单元测试?
提前谢谢。
答案 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>