我正在尝试从我的ant build.xml文件中运行Junit测试。我读到here你可以使用junit.jar文件,而不是使用位于ant.home / lib目录中的.jar。这是我想要做的,因为我们的Jenkins autobuild设置在他的ant lib目录中没有junit.jar文件。
即使是最简单的项目,我也总是收到这个错误,找不到JUnitTask。如果你查看我的build.xml文件,它显然包含在junit任务中并用于它。
build.xml:
<project default="all">
<property name="TALK" value="false" />
<path id="classpath.base">
</path>
<path id="classpath.test">
<fileset dir="." includes="**/*.jar" />
</path>
<target name="compile-test">
<javac srcdir="src" verbose="${TALK}">
<classpath refid="classpath.test" />
</javac>
</target>
<target name="test" depends="compile-test">
<junit>
<classpath refid="classpath.test" />
<formatter type="brief" usefile="false" />
<test name="TestClass" />
</junit>
</target>
<target name="all" depends="test" />
</project>
我用来测试的小例子看起来像这样:
编辑:根据答案更新
答案 0 :(得分:9)
junit-Documentation有点稀疏
如果您在ANT_HOME/lib
之外有ant-junit.jar,则需要自己定义任务(<taskdef/>
来自FAQ,这也有点不对,因为它告诉我使用{ {1}},它不作为class="..."
的属性存在):
<taskdef />
这可以用来检查路径:
<path id="classpath.test">
<fileset dir="." includes="*junit.jar" />
</path>
<taskdef name="junit"
classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask">
<classpath refid="classpath.test"/>
</taskdef>
文档:
junit task
其他信息可在this chat transcript
中找到答案 1 :(得分:0)
我的解决方案是在Jenkins系统配置中创建一个CLASSPATH变量,并添加ant-junit.jar路径
答案 2 :(得分:0)