buildframework/helium/sf/java/antlint/tests/data/sample.ant.xml
changeset 628 7c4a911dc066
parent 588 c7c26511138f
child 645 b8d81fa19e7d
--- a/buildframework/helium/sf/java/antlint/tests/data/sample.ant.xml	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/java/antlint/tests/data/sample.ant.xml	Fri Aug 13 14:59:05 2010 +0300
@@ -247,5 +247,52 @@
         <echo>checking indentation</echo>
      </target>
      
+    <target name="check-empty-catch-finally-block-in-trycatch">
+        <echo>checking for empty catch block in try-catch</echo>
+        <trycatch property="test.try">
+            <try>
+                <condition/>
+            </try>
+        </trycatch>
+    </target> 
+
+    <target name="check-empty-catch-block-in-trycatch">
+        <echo>checking for empty catch block in try-catch</echo>
+        <trycatch property="test.try">
+            <try>
+                <condition/>
+            </try>
+            <finally>
+                <echo> inside finally </echo>
+            </finally>
+        </trycatch>
+    </target> 
+
+    <target name="check-empty-finally-block-in-trycatch">
+        <echo>checking for empty catch block in try-catch</echo>
+        <trycatch property="test.try">
+            <try>
+                <condition/>
+            </try>
+            <catch>
+                <echo> inside catch </echo>
+            </catch>
+        </trycatch>
+    </target> 
+    
+    <target name="check-multiple-catch-blocks-in-trycatch">
+        <echo>checking for empty catch block in try-catch</echo>
+        <trycatch property="test.try">
+            <try>
+                <condition/>
+            </try>
+            <catch>
+                <echo> inside catch1 </echo>
+            </catch>
+            <catch>
+                <echo> inside catch2 </echo>
+            </catch>
+        </trycatch>
+    </target> 
      
 </project>
\ No newline at end of file