+ * //!NameOfTheTest - will be used as JUnit test name
+ * //#org.eclipse.cdt.core.parser.tests.rewrite.comenthandler.CommentHandlingTest
+ * //@NameOfASourceFile.h
+ * class myTestClass
+ * {
+ * //myLeadingComment
+ * void aMethod(); //myTrailingComment
+ * //myFreestandingComment
+ * //myFreestandingComment2
+ * };
+ *
+ * //=
+ * =>leading
+ * void aMethod(); = //myLeadingComment
+ *
+ * =>trailing
+ * void aMethod(); = //myTrailingComment
+ *
+ * =>freestanding
+ * void aMethod(); = //myFreestandingComment , //myFreestandingComment2
+ *
+ *
+ * The second line (//#org.eclipse.cdt...) indicates the test class (in this case this class).