From 3da8bd4fa7443ebd67c2a1ce33f0041d199c2d75 Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Wed, 25 Jan 2006 05:25:51 +0000 Subject: [PATCH] regen site git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@372113 13f79535-47bb-0310-9956-ffa450edef68 --- docs/antlibs/antunit/index.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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