summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authormattinger <[email protected]>2006-07-07 14:45:50 +0000
committermattinger <[email protected]>2006-07-07 14:45:50 +0000
commit855b913e7c3bf4b662beb1f97ac4980270330042 (patch)
tree13a61f284c559225f331a66c93a01102bd80bd0b /test
parente6cb208a20d77d388855ae517ec224cdc7480ae1 (diff)
Fixing assert stuff, and the For task
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@8 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'test')
-rw-r--r--test/resources/logic/asserttest.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/resources/logic/asserttest.xml b/test/resources/logic/asserttest.xml
index 8502299..acce588 100644
--- a/test/resources/logic/asserttest.xml
+++ b/test/resources/logic/asserttest.xml
@@ -12,8 +12,12 @@
<target name="test1">
<property name="testprop" value="true"/>
- <assert name="testprop"/>
- <assert name="testprop" value="true"/>
+ <assert>
+ <isset property="testprop"/>
+ </assert>
+ <assert>
+ <istrue value="${testprop}" />
+ </assert>
</target>
<target name="test2">