我需要从ant build.xml运行一个junit文件,其中junit驻留在testscripts包中,junit类已经被另一个类扩展,该类位于另一个名为supportlibraries的包中, 现在,如何通过build.xml运行我的junit
可以帮助我 谢谢
答案 0 :(得分:1)
除了Mark O'Connor建议的内容之外,还需要在junit任务中设置依赖项。
<junit ....>
<classpath>
<pathelement path="testscripts" />
<pathelement path="supportlibraries">
<!-- Add other dependencies here. -->
</classpath>
<test name ="...">
</test>
</junit>