forked from testng-team/testng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove old and and maven build files.
- Loading branch information
Showing
7 changed files
with
625 additions
and
541 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,74 +1,74 @@ | ||
<project name="testng" default="all" basedir="."> | ||
|
||
<property file="build.properties"/> | ||
<property name="this.directory" value="${test.dir}" /> | ||
<property name="test-output" value="${this.directory}/test-output" /> | ||
|
||
<taskdef name="testng" classname="org.testng.TestNGAntTask" classpath="${testng.jar}" /> | ||
|
||
<target name="all"> | ||
<echo>This dir: ${this.directory}</echo> | ||
<delete failonerror="false" dir="${this.directory}/build" /> | ||
<mkdir dir="${this.directory}/build" /> | ||
|
||
<javac classpath="${testng.jar}" | ||
destdir="${this.directory}/build" srcdir="${this.directory}" includes="test/ant/*.java" /> | ||
|
||
<!-- | ||
<testng classpath="build;../../testng-5.2beta-jdk15.jar" | ||
outputdir="test-output" | ||
dumpcommand="true"> | ||
<xmlfileset dir="." includes="testng.xml"/> | ||
</testng> | ||
--> | ||
<delete failonerror="false"> | ||
<fileset dir="${test-output}" includes="**"/></delete> | ||
|
||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
parallel="methods" | ||
threadcount="5" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
> | ||
<classfileset dir="${this.directory}/build"> | ||
<include name="test/ant/NoPackageTest.class" /> | ||
<include name="test/ant/MultipleThreadTest.class" /> | ||
</classfileset> | ||
</testng> | ||
|
||
<available file="${test-output}/Ant suite/Ant test.xml" | ||
type="file" property="test.exists"/> | ||
<fail unless="test.exists" | ||
message="The appropriately named output should have been created"/> | ||
|
||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
suitename="Test Ant Suite" | ||
testname="Test Ant Test" | ||
> | ||
<classfileset dir="${this.directory}/build"> | ||
<include name="test/ant/DontOverrideSuiteNameTest.class" /> | ||
</classfileset> | ||
</testng> | ||
|
||
<available file="${test-output}/Test Ant Suite/Test Ant Test.xml" | ||
type="file" property="test2.exists"/> | ||
<fail unless="test2.exists" message="The appropriately named output should have been created"/> | ||
|
||
<!-- Ensure standard tests get run --> | ||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
> | ||
<xmlfileset file="${test.resources.dir}/testng-ant.xml"/> | ||
</testng> | ||
<available file="${test-output}/Suitename from xml/TestName.xml" | ||
type="file" property="test3.exists"/> | ||
<fail unless="test3.exists" message="The appropriately named output should have been created"/> | ||
|
||
</target> | ||
</project> | ||
<project name="testng" default="all" basedir="."> | ||
|
||
<property file="build.properties"/> | ||
<property name="this.directory" value="${test.dir}" /> | ||
<property name="test-output" value="${this.directory}/test-output" /> | ||
|
||
<taskdef name="testng" classname="org.testng.TestNGAntTask" classpath="${testng.jar}" /> | ||
|
||
<target name="all"> | ||
<echo>This dir: ${this.directory}</echo> | ||
<delete failonerror="false" dir="${this.directory}/build" /> | ||
<mkdir dir="${this.directory}/build" /> | ||
|
||
<javac classpath="${testng.jar}" | ||
destdir="${this.directory}/build" srcdir="${this.directory}" includes="test/ant/*.java" /> | ||
|
||
<!-- | ||
<testng classpath="build;../../testng-5.2beta-jdk15.jar" | ||
outputdir="test-output" | ||
dumpcommand="true"> | ||
<xmlfileset dir="." includes="testng.xml"/> | ||
</testng> | ||
--> | ||
<delete failonerror="false"> | ||
<fileset dir="${test-output}" includes="**"/></delete> | ||
|
||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
parallel="methods" | ||
threadcount="5" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
> | ||
<classfileset dir="${this.directory}/build"> | ||
<include name="test/ant/NoPackageTest.class" /> | ||
<include name="test/ant/MultipleThreadTest.class" /> | ||
</classfileset> | ||
</testng> | ||
|
||
<available file="${test-output}/Ant suite/Ant test.xml" | ||
type="file" property="test.exists"/> | ||
<fail unless="test.exists" | ||
message="The appropriately named output should have been created"/> | ||
|
||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
suitename="Test Ant Suite" | ||
testname="Test Ant Test" | ||
> | ||
<classfileset dir="${this.directory}/build"> | ||
<include name="test/ant/DontOverrideSuiteNameTest.class" /> | ||
</classfileset> | ||
</testng> | ||
|
||
<available file="${test-output}/Test Ant Suite/Test Ant Test.xml" | ||
type="file" property="test2.exists"/> | ||
<fail unless="test2.exists" message="The appropriately named output should have been created"/> | ||
|
||
<!-- Ensure standard tests get run --> | ||
<testng classpath="${this.directory}/build;${testng.jar}" | ||
outputdir="${test-output}" | ||
listeners = "org.testng.reporters.FailedReporter, org.testng.reporters.DotTestListener" | ||
haltonfailure="true" | ||
> | ||
<xmlfileset file="${test.resources.dir}/testng-ant.xml"/> | ||
</testng> | ||
<available file="${test-output}/Suitename from xml/TestName.xml" | ||
type="file" property="test3.exists"/> | ||
<fail unless="test3.exists" message="The appropriately named output should have been created"/> | ||
|
||
</target> | ||
</project> |
File renamed without changes.
Oops, something went wrong.