tools/JavaParserIITests.st
branchdevelopment
changeset 2453 0a471c86d3ef
parent 2429 ebece4dcaab9
child 2641 79395ea8b58f
--- a/tools/JavaParserIITests.st	Sat Mar 09 17:12:50 2013 +0000
+++ b/tools/JavaParserIITests.st	Sat Mar 09 17:22:51 2013 +0000
@@ -8,7 +8,6 @@
 !
 
 
-
 !JavaParserIITests methodsFor:'accessing'!
 
 parserClass
@@ -17,7 +16,6 @@
     "Modified: / 09-03-2012 / 23:27:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'parsing'!
 
 fail: aString rule: aSymbol 
@@ -34,7 +32,6 @@
     "Created: / 14-03-2012 / 22:51:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'testing'!
 
 testCompilationUnit1
@@ -521,7 +518,6 @@
     "Created: / 16-03-2012 / 01:15:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'testing-annotations'!
 
 test_annotation_01
@@ -542,7 +538,6 @@
     "Created: / 12-03-2012 / 16:11:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'testing-classes'!
 
 testClassBody1
@@ -627,17 +622,15 @@
 !
 
 testClassDeclaration16
-    self should: [
-        self parse: '
-            class XXX
-            {  
-            } // trailing comment
-            '
-        rule: #compilationUnit
-    ] raise: Error.
+    self parse: '
+        class XXX
+        {  
+        } // trailing comment
+        '
+    rule: #compilationUnit
 
     "Created: / 16-12-2012 / 16:54:44 / Marcel Hlopko <marcel.hlopko@fit.cvut.cz>"
-    "Modified: / 11-01-2013 / 11:38:33 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 09-03-2013 / 17:03:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 testClassDeclaration2
@@ -838,7 +831,6 @@
     "Created: / 12-03-2012 / 16:17:36 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'testing-declarations'!
 
 test_field_declaration_01
@@ -922,7 +914,6 @@
     "Created: / 11-03-2012 / 13:03:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'testing-types'!
 
 testType_01
@@ -1006,7 +997,6 @@
     "Created: / 15-03-2012 / 23:05:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests methodsFor:'tests-compilation units'!
 
 test_compilation_unit_01a
@@ -7442,7 +7432,6 @@
     "Created: / 16-03-2012 / 00:25:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
-
 !JavaParserIITests class methodsFor:'documentation'!
 
 version_CVS