Author: mbenson
Date: Wed Sep 27 15:20:44 2006
New Revision: 450601

URL: http://svn.apache.org/viewvc?view=rev&rev=450601
Log:
add more abc tests

Modified:
    ant/core/trunk/src/tests/antunit/types/conditions/matches-test.xml

Modified: ant/core/trunk/src/tests/antunit/types/conditions/matches-test.xml
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/tests/antunit/types/conditions/matches-test.xml?view=diff&rev=450601&r1=450600&r2=450601
==============================================================================
--- ant/core/trunk/src/tests/antunit/types/conditions/matches-test.xml 
(original)
+++ ant/core/trunk/src/tests/antunit/types/conditions/matches-test.xml Wed Sep 
27 15:20:44 2006
@@ -39,11 +39,20 @@
       <matches string="abc" pattern="ab?"/>
     </au:assertTrue>
     <au:assertTrue>
+      <matches string="abc" pattern="ab."/>
+    </au:assertTrue>
+    <au:assertTrue>
       <matches string="ab" pattern="ab?"/>
     </au:assertTrue>
     <au:assertTrue>
+      <matches string="ab" pattern="ab"/>
+    </au:assertTrue>
+    <au:assertTrue>
       <matches string="acb" pattern="ab?"/>
     </au:assertTrue>
+    <au:assertFalse>
+      <matches string="acb" pattern="ab."/>
+    </au:assertFalse>
   </target>
 
   <target name="test-caseinsensitive">



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to