Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/infra/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/services/FakeComposedServicePart.java')
-rw-r--r--tests/junit/plugins/infra/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/services/FakeComposedServicePart.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/junit/plugins/infra/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/services/FakeComposedServicePart.java b/tests/junit/plugins/infra/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/services/FakeComposedServicePart.java
new file mode 100644
index 00000000000..aaba874576a
--- /dev/null
+++ b/tests/junit/plugins/infra/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/services/FakeComposedServicePart.java
@@ -0,0 +1,27 @@
+/**
+ *
+ */
+package org.eclipse.papyrus.infra.core.services;
+
+
+
+/**
+ * A fake composed service part for testing purpose.
+ * @author cedric dumoulin
+ *
+ */
+public class FakeComposedServicePart extends ComposedServicePart<FakeComposedService> {
+
+
+ public FakeComposedServicePart() {
+ super(FakeComposedService.class);
+ }
+
+ /**
+ * A common method.
+ */
+ public void walkService() {
+ // TODO Auto-generated method stub
+
+ }
+}

Back to the top