Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrschnekenbu2013-05-06 16:15:56 +0000
committerrschnekenbu2013-05-06 16:15:56 +0000
commit45e344eb6a48e3ecae855c043a6df3ef8b8b4fa3 (patch)
treeb659654a0b9641717e412c9564988431a5c148c7
parentc4f94fd42809bad791057a1e4d626d493103f846 (diff)
downloadorg.eclipse.papyrus-45e344eb6a48e3ecae855c043a6df3ef8b8b4fa3.tar.gz
org.eclipse.papyrus-45e344eb6a48e3ecae855c043a6df3ef8b8b4fa3.tar.xz
org.eclipse.papyrus-45e344eb6a48e3ecae855c043a6df3ef8b8b4fa3.zip
activity tests: ignore tests requiring user interaction (Call behavior/Call Operation / Send Signal)
-rw-r--r--tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity.tests/src/org/eclipse/papyrus/uml/diagram/activity/tests/canonical/TestActivityDiagramChildWithOtherCreationNode.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity.tests/src/org/eclipse/papyrus/uml/diagram/activity/tests/canonical/TestActivityDiagramChildWithOtherCreationNode.java b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity.tests/src/org/eclipse/papyrus/uml/diagram/activity/tests/canonical/TestActivityDiagramChildWithOtherCreationNode.java
index b5b92e72c3a..255dd61ad91 100644
--- a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity.tests/src/org/eclipse/papyrus/uml/diagram/activity/tests/canonical/TestActivityDiagramChildWithOtherCreationNode.java
+++ b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.activity.tests/src/org/eclipse/papyrus/uml/diagram/activity/tests/canonical/TestActivityDiagramChildWithOtherCreationNode.java
@@ -16,6 +16,7 @@ package org.eclipse.papyrus.uml.diagram.activity.tests.canonical;
import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest;
import org.eclipse.papyrus.uml.diagram.activity.providers.UMLElementTypes;
import org.eclipse.uml2.uml.UMLPackage;
+import org.junit.Ignore;
import org.junit.Test;
@@ -29,12 +30,14 @@ public class TestActivityDiagramChildWithOtherCreationNode extends AbstractTestA
* Test to manage callbehaviorAction
*/
@Test
+ @Ignore
public void testToManageCallbehaviorAction() {
testToManageNode(UMLElementTypes.CallBehaviorAction_3008, UMLPackage.eINSTANCE.getCallBehaviorAction(), UMLElementTypes.StructuredActivityNode_3065, false);
}
/**
* Test to manage callOperationAction
*/
+ @Ignore
@Test
public void testToManageCallOperationAction() {
testToManageNode(UMLElementTypes.CallOperationAction_3010, UMLPackage.eINSTANCE.getCallOperationAction(), UMLElementTypes.StructuredActivityNode_3065, false);
@@ -43,6 +46,7 @@ public class TestActivityDiagramChildWithOtherCreationNode extends AbstractTestA
/**
* Test to manage SendSignalAction Node.
*/
+ @Ignore
@Test
public void testToManageSendSignalAction() {
testToManageNode(UMLElementTypes.SendSignalAction_3052, UMLPackage.eINSTANCE.getSendSignalAction(), UMLElementTypes.StructuredActivityNode_3065, false);

Back to the top