summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authormattinger <[email protected]>2006-07-07 00:48:52 +0000
committermattinger <[email protected]>2006-07-07 00:48:52 +0000
commite6cb208a20d77d388855ae517ec224cdc7480ae1 (patch)
treeb547fc173ce6e892967fee8c22cd7664bd001b9e /test
parent42879e34de2ee5cafd7a290418db5c1fe7d6b181 (diff)
Fixing some assert tests
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@7 32d7a393-a5a9-423c-abd3-5d954feb1f2f
Diffstat (limited to 'test')
-rw-r--r--test/resources/logic/asserttest.xml16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/resources/logic/asserttest.xml b/test/resources/logic/asserttest.xml
index 2e920e2..8502299 100644
--- a/test/resources/logic/asserttest.xml
+++ b/test/resources/logic/asserttest.xml
@@ -28,58 +28,42 @@
<!-- test boolean conditions -->
<target name="test4">
<assert>
- <bool>
<isgreaterthan arg1="6.02" arg2="4"/>
- </bool>
</assert>
<assert>
- <bool>
<isgreaterthan arg1="Many" arg2="Less"/>
- </bool>
</assert>
</target>
<target name="test5">
<assert>
- <bool>
<islessthan arg1="6.02" arg2="23.456"/>
- </bool>
</assert>
<assert>
- <bool>
<islessthan arg1="least" arg2="most"/>
- </bool>
</assert>
</target>
<target name="test6">
<property name="testprop" value="false"/>
<assert>
- <bool>
<ispropertyfalse property="testprop"/>
- </bool>
</assert>
</target>
<target name="test7">
<property name="testprop" value="no"/>
<assert>
- <bool>
<ispropertytrue property="testprop"/>
- </bool>
</assert>
</target>
<target name="test8">
<property name="testprop" value="yes"/>
<assert>
- <bool>
<ispropertytrue property="testprop"/>
- </bool>
</assert>
</target>
<target name="test9">
<property name="testprop" value="on"/>
<assert>
- <bool>
<ispropertyfalse property="testprop"/>
- </bool>
</assert>
</target>