This is a library of Ant tasks that support writing tests for tasks using build files instead of JUnit.
The current version requires Ant 1.7.0 Beta 2 or later.
The source code for the library lives in the antlibs subspace of Ant's SVN - http://svn.apache.org/viewcvs.cgi/ant/antlibs/antunit/trunk/.
If you are building this from sources, run the antlib target
and you'll get a file ant-antunit.jar.
There are several ways to use the tasks:
<taskdef
resource="org/apache/ant/antunit/antlib.xml">
<classpath>
<pathelement location="YOUR-PATH-TO/ant-antunit.jar"/>
</classpath>
</taskdef>
With this you can use the tasks like plain Ant tasks, they'll
live in the default namespace. I.e. if you can run
<exec> without any namespace prefix, you can do so for
<antunit> as well.
<taskdef
uri="antlib:org.apache.ant.antunit"
resource="org/apache/ant/antunit/antlib.xml">
<classpath>
<pathelement location="YOUR-PATH-TO/ant-antunit.jar"/>
</classpath>
</taskdef>
This puts you task into a separate namespace than Ant's
namespace. You would use the tasks like
<project
xmlns:au="antlib:org.apache.ant.antunit"
xmlns="antlib:org.apache.tools.ant">
...
<au:assertTrue>
<equals arg1="1" arg2="2"/>
</au:assertTrue>
or a variation thereof.
ant-antunit.jar
into a directory and use ant -lib
DIR-CONTAINING-THE-JAR or copy it into
ANT_HOME/lib - and then in your build file, simply
declare the namespace on the project tag:
<project
xmlns:au="antlib:org.apache.ant.antunit"
xmlns="antlib:org.apache.tools.ant">
And all tasks of this library will automatically be available
in the au namespace without any
taskdef.