如何在build.xml中运行Junit文件

时间:2013-01-02 12:08:45

标签: ant junit junit4 build.xml

我需要从ant build.xml运行一个junit文件,其中junit驻留在testscripts包中,junit类已经被另一个类扩展,该类位于另一个名为supportlibraries的包中, 现在,如何通过build.xml运行我的junit

可以帮助我 谢谢

1 个答案:

答案 0 :(得分:1)

除了Mark O'Connor建议的内容之外,还需要在junit任务中设置依赖项。

<junit ....> 
  <classpath>
     <pathelement path="testscripts" />
     <pathelement path="supportlibraries">
     <!-- Add other dependencies here. -->
  </classpath>
  <test name ="...">
  </test>
</junit>