diff --git a/docs/antlibs/antunit/index.html b/docs/antlibs/antunit/index.html index 29c90ddea..ba6b3e54a 100755 --- a/docs/antlibs/antunit/index.html +++ b/docs/antlibs/antunit/index.html @@ -270,9 +270,9 @@ public class ANTLRTest extends BuildFileTest { <!-- the actual test case --> <target name="testTouchCreatesFile"> - <au:assertFileDoesntExist name="${foo}"/> + <au:assertFileDoesntExist file="${foo}"/> <touch file="${foo}"/> - <au:assertFileExists name="${foo}"/> + <au:assertFileExists file="${foo}"/> </target> </project> @@ -285,6 +285,12 @@ public class ANTLRTest extends BuildFileTest {
from a buildfile of its own you'll get a result that looks like
+[au:antunit] Build File: /tmp/touch.xml +[au:antunit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.249 sec +[au:antunit] Target: testTouchCreatesFile took 0.183 sec + +BUILD SUCCESSFUL +Total time: 1 second