如上所述,请使用以下ant脚本运行TestNG单元测试。请调整以下代码以满足您的要求。
<?xml version="1.0" encoding="UTF-8" standalone="no"?><project basedir="." default="build" name="Ant Play"> <property name="classes.dir" value="bin" /> <property name="report.dir" value="test-output" /> <path id="classpath"> <fileset dir="lib"> <include name="***.java"/> </fileset> </copy> </target> <target name="clean"> <delete dir="${classes.dir}"/> </target> <target depends="clean" name="cleanall"/> <target depends="build-project" name="build"/> <target depends="init" name="build-project"> <echo message="${ant.project.name}: ${ant.file}"/> <javac debug="true" includeantruntime="false" destdir="${classes.dir}"> <src path="src"/> <classpath refid="classpath"/> </javac> </target> <target depends="build" name="runTests" description="Running tests" > <echo>Running Tests...</echo> <taskdef resource="testngtasks" classpathref="classpath"/> <testng outputDir="${report.dir}" haltonfailure="true" useDefaultListeners="false" listeners="org.uncommons.reportng.HTMLReporter" classpathref="classpath"> <xmlfileset dir="${basedir}" includes="testng.xml"/> <!--<classfileset dir="${classes.dir}" includes="**/*.class" />--> </testng> </target></project>如果您遇到任何问题,请告诉我。顺便说一句,请使用Jenkins ant插件/任务运行此脚本



