You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
987 B
31 lines
987 B
<project name="testng" default="run" basedir=".">
|
|
<property name="testng.home" value="${basedir}/../" />
|
|
<property name="lib.dir" value="${testng.home}/3rdparty"/>
|
|
<property file="../build.properties"/>
|
|
|
|
<path id="run.cp">
|
|
<pathelement location="../z_build" />
|
|
<fileset dir="${lib.dir}">
|
|
<include name="junit.jar"/>
|
|
<include name="${beanshell.jar}"/>
|
|
<include name="${qdox.jar}"/>
|
|
</fileset>
|
|
<pathelement location="${java.home}/../lib/tools.jar"/>
|
|
</path>
|
|
|
|
<target name="run" description="Run tests" >
|
|
<echo>Defining task from ${basedir}/../${jdk15.testng.jar}</echo>
|
|
<taskdef name="testng"
|
|
classname="org.testng.TestNGAntTask"
|
|
classpath="${basedir}/../${jdk15.testng.jar}" />
|
|
|
|
<testng classpathref="run.cp"
|
|
dumpcommand="true" verbose="9" outputdir="test-outputs" haltonfailure="true">
|
|
<xmlfileset dir="${basedir}">
|
|
<include name="testng-single.xml" />
|
|
</xmlfileset>
|
|
</testng>
|
|
</target>
|
|
|
|
</project>
|