Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/tests/TestClass.alf')
-rw-r--r--tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/tests/TestClass.alf11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/tests/TestClass.alf b/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/tests/TestClass.alf
new file mode 100644
index 00000000000..acd6b165b08
--- /dev/null
+++ b/tests/junit/plugins/uml/alf/org.eclipse.papyrus.uml.alf.tests/tests/TestClass.alf
@@ -0,0 +1,11 @@
+/** Comment */
+abstract class A {
+ /** Member Comment */
+ private x : Integer = 1;
+ private y : String;
+ private z : any[0..*];
+ /** Another comment */
+ activity R(in x: Integer);
+ public abstract p(in x : Integer, out y : Integer);
+ public q(in s : String[]) : Boolean { return s == ""; }
+} \ No newline at end of file

Back to the top