parsers/java/PPJavaParserTest.st
changeset 437 54b3bc9e3987
parent 436 e1c44b571db9
--- a/parsers/java/PPJavaParserTest.st	Tue Apr 21 17:06:24 2015 +0100
+++ b/parsers/java/PPJavaParserTest.st	Tue Apr 21 17:20:11 2015 +0100
@@ -94,6 +94,30 @@
 	self assert: (result comment) equals: '*     * @param args      * @return void     '.
 !
 
+testComment8cr
+        super testComment8cr.
+        self assert: result class equals: PJTraditionalCommentsNode .
+        self assert: (result comment) equals: ''.
+
+    "Created: / 21-04-2015 / 17:08:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+testComment8crlf
+        super testComment8crlf.
+        self assert: result class equals: PJTraditionalCommentsNode .
+        self assert: (result comment) equals: ''.
+
+    "Created: / 21-04-2015 / 17:08:37 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+testComment8lf
+        super testComment8lf.
+        self assert: result class equals: PJTraditionalCommentsNode .
+        self assert: (result comment) equals: ''.
+
+    "Created: / 21-04-2015 / 17:08:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 testSeparator1
 super testSeparator1.
 	self assert: result class equals: PJSeparatorNode .