<project name="JunitSuite" basedir="." default="clean">
<property name="${src}" value="./src/JunitSuiteProject" />
<property name="${build}" value="./build" />
<property name="package" value="JunitSuiteProject"/>
<property name= "jar" value="./build/jar"/>
<target name="clean">
<delete dir="./build"/>
<mkdir dir="./build"/>
<mkdir dir="./build/jar"/>
</target>
<target name="run">
<junit printsummary="yes" haltonfailure="yes" showoutput="yes">
<classpath location="C:\Program Files\Java\apache-ant-1.9.2\lib\selenium-server-standalone-2.35.0.jar"/>
<classpath location="E:\Swaroop Don't Touch\Selenium\eclipse-jee-juno-SR2-win32\eclipse\plugins\org.junit_3.8.2.v3_8_2_v20100427-1100\junit.jar"/>
<classpath location="C:\Program Files\Java\apache-ant-1.9.2\lib\*.jar"/>
<classpath location="E:\Swaroop Don't Touch\Selenium\eclipse-jee-juno-SR2-win32\eclipse\plugins\"/>
<formatter type="brief" usefile="false"/>
<batchtest fork="yes">
<fileset dir="C:\Program Files\Java\apache-ant-1.9.2\lib" includes="selenium-server-standalone-2.35.0.jar"/>
<fileset dir="E:\Swaroop Don't Touch\Selenium\eclipse-jee-juno-SR2-win32\eclipse\plugins\org.junit_3.8.2.v3_8_2_v20100427-1100" includes="junit.jar"/>
<fileset dir="C:\Program Files\Java\apache-ant-1.9.2\lib" includes="*.jar"/>
<fileset dir="./build" includes="**/AllTests.*"/>
</batchtest>
</junit>
</target>
<target name="compile">
<javac srcdir="./src/JunitSuiteProject" destdir="./build" includeantruntime="true">
<classpath location="C:\Program Files\Java\apache-ant-1.9.2\lib\selenium-server-standalone-2.35.0.jar" />
</javac>
</target>
<target name="jar">
<jar destfile="./build/jar/JunitSuite.jar" basedir="./build">
</jar>
</target>
</project>
**************************************************************
package JunitSuiteProject;
import junit.framework.TestSuite;
import junit.framework.Test;
import org.junit.runners.Suite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({JunitTest1.class})
public class AllTests extends TestSuite{
public static Test Suite(){
TestSuite g = new TestSuite();
g.addTest(new JunitTest1("testprintTest"));
return g;
}
public static void main(String[]args){
junit.textui.TestRunner.run(Suite());
}
}
当我在 Junit 中指定 Jars 的位置时,谁能告诉我这里有什么问题,为什么我在触发 Ant 文件时会出现 ClassNotFoundException 错误。
The output says:
[junit] Running AllTests
[junit] Testsuite: AllTests
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
[junit] Tests run: 1, Failures: 0, Errors: 1, Time elapsed: 0 sec
[junit] Null Test: Caused an ERROR
[junit] AllTests
[junit] java.lang.ClassNotFoundException: AllTests
使用的 junit 是 3.8 版本,它作为 junit 测试执行良好,但从 build.xml 文件启动时出错。