Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorashatilov2015-11-09 11:13:25 +0000
committerGerrit Code Review @ Eclipse.org2015-11-26 12:25:23 +0000
commitb6dba49aee265c2ad8afd3d958a8fcce1ae56184 (patch)
tree25d5b24b68210a3532b6bf8c14205b7ea17b2758 /tests
parent77aafffb1f48e871432ef038a42e4fc73f14d8a0 (diff)
downloadorg.eclipse.papyrus-b6dba49aee265c2ad8afd3d958a8fcce1ae56184.tar.gz
org.eclipse.papyrus-b6dba49aee265c2ad8afd3d958a8fcce1ae56184.tar.xz
org.eclipse.papyrus-b6dba49aee265c2ad8afd3d958a8fcce1ae56184.zip
Bug 462987 - [Composite Structure Diagram] Ports that are added
graphically to composites are placed in the upper left hand corner - fix composite diagram - move drop affixed node logic to the common Change-Id: If2fdb1aad0ef1c091caca57de8bb17b4394df3a2 Signed-off-by: ashatilov <shatilov@montages.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite.tests/test/org/eclipse/papyrus/uml/diagram/composite/test/canonical/TestPortLocation.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite.tests/test/org/eclipse/papyrus/uml/diagram/composite/test/canonical/TestPortLocation.java b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite.tests/test/org/eclipse/papyrus/uml/diagram/composite/test/canonical/TestPortLocation.java
index fa9bee5627c..672c6a67a69 100644
--- a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite.tests/test/org/eclipse/papyrus/uml/diagram/composite/test/canonical/TestPortLocation.java
+++ b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.composite.tests/test/org/eclipse/papyrus/uml/diagram/composite/test/canonical/TestPortLocation.java
@@ -2,7 +2,6 @@ package org.eclipse.papyrus.uml.diagram.composite.test.canonical;
import org.eclipse.gmf.runtime.emf.type.core.IElementType;
import org.eclipse.papyrus.commands.ICreationCommand;
-import org.eclipse.papyrus.junit.framework.classification.FailingTest;
import org.eclipse.papyrus.uml.diagram.composite.CreateCompositeDiagramCommand;
import org.eclipse.papyrus.uml.diagram.composite.edit.parts.ClassCompositeCompartmentEditPart;
import org.eclipse.papyrus.uml.diagram.composite.providers.UMLElementTypes;
@@ -26,37 +25,31 @@ public class TestPortLocation extends org.eclipse.papyrus.uml.diagram.tests.cano
return ICompositeDiagramTestsConstants.FILE_NAME;
}
- @FailingTest
@Test
public void testStateMachinePortLocation() {
testPortLocation(UMLElementTypes.StateMachine_2063);
}
- @FailingTest
@Test
public void testProtocolStateMachinePortLocation() {
testPortLocation(UMLElementTypes.ProtocolStateMachine_2062);
}
- @FailingTest
@Test
public void testInteractionItemPortLocation() {
testPortLocation(UMLElementTypes.Interaction_2061);
}
- @FailingTest
@Test
public void testClassPortLocation() {
testPortLocation(UMLElementTypes.Class_2073);
}
- @FailingTest
@Test
public void testClassPartPortLocation() {
testPortLocation(UMLElementTypes.Class_2073, ClassCompositeCompartmentEditPart.VISUAL_ID, UMLElementTypes.Property_3070);
}
- @FailingTest
@Test
public void testActivityPortLocation() {
testPortLocation(UMLElementTypes.Activity_2060);

Back to the top