运行ant build会给出“软件包org.junit不存在”

当我使用Java

IDE构建具有JUnit测试的项目(例如NetBeans)时,它们可以正常编译,但是当我尝试在IDE外部使用ant运行构建脚本时,出现错误“包org.junit不存在”。

回答:

您应该将junit.jar添加到ant文件的classpath定义中。

有很多方法可以做到,例如:

<junit printsummary="yes" haltonfailure="yes">

<classpath>

<path refid="your.classpath.refid" />

<fileset dir="${junit.dir}">

<include name="**/junit.jar" />

</fileset>

</classpath>

...

</junit>

有关设置类路径的详细信息,请参见Ant手册。

以上是 运行ant build会给出“软件包org.junit不存在” 的全部内容, 来源链接: utcz.com/qa/412097.html

回到顶部