blob: bf383ac453da281d98b7faff3c0bea284c4631b5 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<project name="touch-test" default="antunit" xmlns:au="antlib:org.apache.ant.antunit">
<import file="../antunit-base.xml"/>
<target name="test-no-child">
<au:expectfailure>
<touch />
</au:expectfailure>
</target>
<target name="test-no-match">
<touch>
<fileset file="${ant.file}">
<filename name="IDONOTMATCH" />
</fileset>
</touch>
</target>
</project>