Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus')
-rw-r--r--tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/AllTests.java17
-rw-r--r--tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/generation/ComponentDiagramGenerateTestsWorkflow.xtend79
2 files changed, 89 insertions, 7 deletions
diff --git a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/AllTests.java b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/AllTests.java
index a60a44a46ca..c8d8d29de17 100644
--- a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/AllTests.java
+++ b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/AllTests.java
@@ -1,5 +1,5 @@
/*****************************************************************************
- * Copyright (c) 2013 CEA LIST.
+ * Copyright (c) 2013, 2015 CEA LIST, Christian W. Damus, and others.
*
*
* All rights reserved. This program and the accompanying materials
@@ -9,25 +9,28 @@
*
* Contributors:
* Nizar GUEDIDI (CEA LIST) - Initial API and implementation
+ * Christian W. Damus - bug 464647
/*****************************************************************************/
package org.eclipse.papyrus.uml.diagram.component.test;
+import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
+import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite.DynamicClasses;
import org.eclipse.papyrus.uml.diagram.component.test.canonical.AllCanonicalTests;
import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* All tests together.
*/
-@RunWith(Suite.class)
+@RunWith(ClassificationSuite.class)
@SuiteClasses({
-// canonical
-AllCanonicalTests.class
+ // canonical
+ AllCanonicalTests.class,
-// load
-//LoadTests.class
+ // load
+ // LoadTests.class,
})
+@DynamicClasses("org.eclipse.papyrus.uml.diagram.component.test.AllGenTests")
public class AllTests {
}
diff --git a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/generation/ComponentDiagramGenerateTestsWorkflow.xtend b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/generation/ComponentDiagramGenerateTestsWorkflow.xtend
new file mode 100644
index 00000000000..4d5f2e0a5df
--- /dev/null
+++ b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.component.tests/src/org/eclipse/papyrus/uml/diagram/component/test/generation/ComponentDiagramGenerateTestsWorkflow.xtend
@@ -0,0 +1,79 @@
+/*******************************************************************************
+ * Copyright (c) 2014, 2015 CEA LIST, Christian W. Damus, and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * CEA LIST - Initial API and implementation
+ * Christian W. Damus - bug 464647
+ *
+ ******************************************************************************/
+package org.eclipse.papyrus.uml.diagram.component.test.generation
+
+import org.eclipse.emf.mwe2.runtime.workflow.WorkflowContextImpl
+import org.eclipse.papyrus.tests.framework.mwe.GenerateTestsWorkflow
+import org.eclipse.papyrus.tests.framework.gmfgenuml2utp.GMFGen2UTPModule
+
+/**
+ * Xtend program for the generation of the Component Diagram tests.
+ */
+class ComponentDiagramGenerateTestsWorkflow {
+
+ def static void main(String[] args) {
+ val workflow = new GenerateTestsWorkflow()
+ runWorkflow(workflow);
+ }
+
+ def static void runWorkflow(extension GenerateTestsWorkflow workflow) {
+ testProjectName = 'org.eclipse.papyrus.uml.diagram.component.tests'
+ gmfgenUri = workflow.resourceURI('/org.eclipse.papyrus.uml.diagram.component/model/ComponentDiagram.gmfgen')
+ testSrcGenLocation = 'test-gen/'
+ testModel = 'model/ComponentDiagramTest.uml'
+
+ utpModuleFunction = [gmfgen, framework, utp |
+ new GMFGen2UTPModule(gmfgen, framework, utp) => [
+ diagramTestPackageName = 'org.eclipse.papyrus.uml.diagram.component.test'
+ topContainerEditPart = 'PackageEditPart';
+ ]
+ ]
+
+ except [
+ editPart [
+ reason = 'Most tests aren\'t applicable.'
+ editPart = named('DependencyNodeEditPart') || 'DependencyBranchEditPart'
+ ]
+ editPart [
+ reason = 'Not a conventional UML presentation.'
+ editPart = named('DefaultNamedElementEditPart')
+ ]
+ permutation [
+ critical
+ reason = 'GMFGen has non-behaviored-classifiers as sources.'
+ testContexts = #[ createLink, synchronization ]
+ editParts [
+ link += named('InterfaceRealizationEditPart')
+ source += !(named('ComponentEditPart') || 'ComponentEditPartCN' || 'ComponentEditPartPCN')
+ target += any
+ ]
+ ]
+ permutation [
+ critical
+ reason = 'GMFGen has noncomponents as sources and non-classifiers as targets.'
+ testContexts = #[ createLink, synchronization ]
+ editParts [
+ link += named('ComponentRealizationEditPart')
+ linkEnds [
+ source += !(named('ComponentEditPart') || 'ComponentEditPartCN' || 'ComponentEditPartPCN')
+ target += !(named('InterfaceEditPart') || 'RectangleInterfaceEditPart' || 'ComponentEditPart'
+ || 'InterfaceEditPartPCN' || 'RectangleInterfaceEditPartCN' || 'ComponentEditPartCN' || 'ComponentEditPartPCN')
+ ]
+ ]
+ ]
+ ]
+
+ run(new WorkflowContextImpl);
+ }
+
+}

Back to the top