blob: b09a50243a4a7ec7090f4ed32b5bfe54f760897e [file] [log] [blame]
<project name="testng" default="run" basedir=".">
<property name="testng.home" value="c:/java/testng" />
<property name="lib.dir" value="${testng.home}/lib"/>
<property name="testng.jar" value="${testng.home}/testng-2.5-jdk15.jar" />
<path id="run.cp">
<!--
<path refid="compile.cp"/>
-->
<pathelement location="build" />
<pathelement location="${lib.dir}/${qdox.jar}"/>
<pathelement location="${java.home}/../lib/tools.jar"/>
</path>
<target name="run" description="Run tests" >
<echo>Defining task from ${testng.jar}</echo>
<taskdef name="testng"
classname="org.testng.TestNGAntTask"
classpath="${testng.jar}" />
<testng classpathref="run.cp"
dumpcommand="true" verbose="9" outputdir="test-outputs">
<classfileset dir="build">
<include name="**/justin/*Test*.class" />
</classfileset>
</testng>
</target>
</project>