使用`<junit>`任务在Ant中进行JUnit测试失败但是传递了`<exec>`?</exec> </junit>

时间:2011-10-21 14:25:01

标签: java ant build junit junit4

我正在将我的JUnit测试自动化到我的Ant构建中。但是,我的简单测试仅在从IDE和命令行运行时通过,但在Ant的<junit>任务中失败。当我从命令行运行它时(我在技术上使用Ant <exec>任务)结果是:

clean:

compile_tests:
    [javac] Compiling 2 source files to C:\MY_TEMP

junit_exec:
     [exec] JUnit version 4.10
     [exec] .
     [exec] Time: 0.004
     [exec]
     [exec] OK (1 test)
     [exec]

BUILD SUCCESSFUL
Total time: 1 second

但是当我使用<junit>任务时:

Buildfile: C:\MY_TEMP\build.xml

clean:

compile_tests:
    [javac] Compiling 2 source files to C:\MY_TEMP

junit_ant:
     [echo] junit_ant started
    [junit] Test SimpleTest FAILED

BUILD SUCCESSFUL
Total time: 0 seconds

MY_TEMP的内容为junit-4.10.jarSimpleTest.javabuild.xml

我已根据Ant junit task documentation的建议将junit-4.10.jar复制到%ANT_HOME%\lib文件夹。它已同时包含ant-junit.jarant-junit4.jar

我的Java版本是1.6.0_26。

我的测试是:

// YES, this is the default package
import org.junit.*;

public class SimpleTest {

    @Test
    public void mySimpleTest(){
        Assert.assertEquals(  2,  1 + 1  );
    }

}

我的Ant文件(build.xml)是:

<?xml version="1.0"?>
<project name="regression_tests" basedir=".">

    <target name="clean">
        <delete>
            <fileset dir="." includes="*.class" />
        </delete>
    </target>

    <target name="compile_tests" depends="clean">
            <javac srcdir="." destdir="." source="1.6" target="1.6" includeantruntime="false" >
            <classpath>
                <pathelement location="./junit-4.10.jar" />
            </classpath>
        </javac>
    </target>

    <target name="junit_ant" depends="compile_tests" >
        <echo message="junit_ant started" />

        <junit>
            <test name="SimpleTest" />
        </junit>
    </target>

    <target name="junit_exec" depends="compile_tests">
        <exec executable="java" dir="." >
            <arg value="-classpath" />
            <arg value=".;junit-4.10.jar" />
            <arg value="org.junit.runner.JUnitCore" />
            <arg value="SimpleTest" />
        </exec>
    </target>

</project>

3 个答案:

答案 0 :(得分:4)

如果测试通过一种方式而另一种方式失败,则可能与类路径相关,例如找不到测试类,测试中的类或库。

测试输出应该有助于澄清这是否是问题所在。

答案 1 :(得分:2)

具体来说,我将junit_ant任务编辑为:

        <junit>
            <classpath location="." />

            <test name="SimpleTest" />
            <formatter type="xml" />
        </junit>

        <junitreport todir=".">
            <fileset dir=".">
                <include name="TEST-*.xml" />
            </fileset>
            <report todir="." />
        </junitreport>

然后向我显示失败是java.lang.ClassNotFoundException: SimpleTest所以我只是将<classpath location="." />添加到<junit>任务中,然后就可以了。

答案 2 :(得分:2)

添加此行以获取更多信息:

<formatter type="brief" usefile="false"/>