在使用ant执行的junit测试中调用assertArrayEquals

时间:2012-01-19 21:02:11

标签: java ant junit tdd

我使用ant构建我的项目,并使用junit编写测试。我面临一个奇怪的问题。请考虑以下代码

import junit.framework.*;

public class Test extends TestCase {

    public Test(String name) {
       super(name);
    }

    public testA() {
          //..Code 

          Assert.arrayEquals(expected,actual) //This does not work
          org.junit.Assert.arrayEquals(expected,actual) //This works !

    }
}

为什么我需要追加org.junit而不能直接使用Assert类?。我在build.xml中设置了junit,如下所示:

<property name="lib" value="./lib" />
<property name="classes" value="./build/classes" />
<property name="test.class.name" value="Test"/>


<path id="test.classpath">
      <pathelement location="${classes}" />
      <pathelement location="./lib/junit-4.10.jar" />
      <fileset dir="${lib}">
            <include name="**/*.jar"/>
      </fileset>
</path>


<target name="test" depends="compile">
        <junit fork="yes" haltonfailure="yes">
            <test name="${test.class.name}" />
            <formatter type="plain" usefile="false" />
            <classpath refid="test.classpath" />
          </junit> 
</target>

1 个答案:

答案 0 :(得分:0)

更改

import junit.framework.*;

 import static org.junit.Assert.*;

我不确定junit.framework包的用途,但导入静态技巧是常见解决方案,并记录在Assert's Javadoc page上。