神秘蚂蚁脚本

  • 本文关键字:脚本 蚂蚁 java ant
  • 更新时间 :
  • 英文 :


我的Ant脚本有问题。我必须在ant run上运行单元测试。

当前脚本如下:

<property name="src" location="src"/>
<property name="build" location="build"/>
<property name="doc" location="doc"/>
<property name="dist" location="dest"/>
<property name="lib" location="lib"/>
<property name="app" value="${ant.project.name}.jar"/>
<presetdef name="javac">
    <javac includeantruntime="false"/>
</presetdef>
<target name="clean">
    <delete dir="${build}"/>
    <delete dir="${dist}"/>
</target>
<target name="compile" depends="clean" description="Compile">
    <mkdir dir="${build}"/>
    <javac srcdir="${src}"
           destdir="${build}" 
           classpath="${lib}/junit-4.10.jar:${lib}/swing-layout-1.0.4.jar:${src}">
    </javac>
    <copy todir="${build}/checkers">
        <fileset dir="${lib}">
            <include name="resources/**" />
        </fileset>
    </copy>
</target>
<target name="run" depends="compile">
    <echo>Running the junit tests...</echo>
    <junit showoutput="no" fork="no">
        <classpath>
            <pathelement location="${build}"/>   
            <pathelement path="${build}:${lib}/junit-4.10.jar"/>
        </classpath>
        <formatter type="plain" usefile="false" />
        <test name="checkers.CheckersTest"/>
    </junit>
</target>

在我的Linux机器上测试运行良好,一切看起来都很好。但是在我的Windows上,Ant给出了我的nice:

java.lang.NoClassDefFoundError: junit/framework/TestListener

Ant在调试模式下告诉我,他从提供的junit-4.10.jar文件中加载了TestListener.class。

试试这个答案http://youtrack.jetbrains.com/issue/TW-4882:

To fix the problem you should either use fork="true" attribute for 
junit task (in this case classpath will be created correctly), or 
to copy junit.jar to ANT_HOME/lib (to ensure correct class loading). 

这里也是这个https://bugs.eclipse.org/bugs/show_bug.cgi?id=36198的bug。最后一条评论说JUnit is available in Ant via the org.eclipse.ant.optional.junit fragment

最新更新