因此,我正在使用JUnit设置自动回归测试,现在,构建脚本已设置为调用TestSuite,它将大量不同的测试打包到TestSuite中并返回它。

构建文件:

<target name="test-perform-check" depends="test-compile">
        <junit printsummary="yes" fork="yes" haltonfailure="no">
            <classpath path ="${mypath}"  />
            <jvmarg value="-Djava.ext.dirs=${extstar};${extpathextended};" />
                    <jvmarg value="-Dmipav=${mipav};" />
            <sysproperty key="mipav" value="${mipav}"/>
           <formatter type="xml"/>
           <formatter type="plain" usefile="false"/>
           <test name="test.JTest"/>
        </junit>
    </target>


JTest.java:

 class JTest extends TestSuite {

    public static Test suite () {
        // set up a bunch of stuff
        TestSuite suite = new TestSuite();
        suite.addTest(new VolumeCompare());
        suite.addTest(new VolumeCompare());
        suite.addTest(new VolumeCompare());
        suite.addTest(new FileExistence());
        // do some other stuff
        return suite;
    }
}


输出:

[junit] Testcase: null took 0.002 sec
[junit]     FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit]
[junit] Testcase: null took 0 sec
[junit]     FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit]
[junit] Testcase: null took 0.002 sec
[junit]     FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit]
[junit] Testcase: null took 0 sec
[junit]     FAILED
[junit] null
[junit] junit.framework.AssertionFailedError
[junit]
[junit] Test test.JTest FAILED


我的问题是-为了使ant正确运行测试,我需要更改buildscript的哪些内容?

编辑:

VolumeCompare.java:

public class VolumeCompare extends TestCase {
    public VolumeCompare (...) {
        // ctor
    }
    @Test
    public void testVolume () {
        // this print statement is never reached
        System.out.println("testing volume");
        // compare volumes here
    }
}

最佳答案

junit task documentation,我认为test属性必须与包含单个Test(而不是Suite)的类一起使用。也许您可以使用一种模式来要求ant在给定的程序包中运行每个测试,如下所示:

  <batchtest fork="yes" todir="${reports.tests}">
   <fileset dir="${src.tests}">
     <include name="**/*Test*.java"/>
     <exclude name="**/AllTests.java"/>
   </fileset>
  </batchtest>

10-01 05:01
查看更多