blob: 7dd3486e7409bf376928085ba1547612dc6c2481 [file] [log] [blame]
<?xml version="1.0"?>
<!--
==============================================================================
Basic tests build file
Authors:
Peter Donald <donaldp@apache.org>
Legal:
Copyright (c) 2000 The Apache Software Foundation. All Rights Reserved.
==============================================================================
-->
<project name="MySample" default="main" basedir=".">
<import library="selftest" />
<property name="year" value="2000"/>
<target name="main" depends="test-target" />
<target name="file-manip">
<file-manip-test base-directory=".">
<source>
<include value="**/*.java" />
</source>
</file-manip-test>
</target>
<target name="undefined-task">
<echo message="About to execute task that hasn't been defined"/>
<echo2 message="This should have failed"/>
</target>
<target name="no-test-target" if="no-do-tests">
<echo message="No tests done here"/>
</target>
<target name="test-target" depends="no-test-target" unless="no-do-tests">
<echo message="Tests away"/>
<prim-test
integer="1"
integer2="2"
short="3"
short2="4"
long="5"
long2="6"
byte="7"
byte2="8"
string="aString"
float="1.0"
float2="2.0"
double="3.0"
double2="4.0"
/>
<sub-elements-test>
<create-beep message="A string" />
<add-beep message="Another String" />
</sub-elements-test>
<conf-test message="..." />
<content-test>123</content-test>
</target>
</project>