Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Maggi2014-04-07 14:54:18 +0000
committerBenoit Maggi2014-04-07 15:37:54 +0000
commitc342d2997c9a38ebd2a636317a74f3b4fe28a96e (patch)
tree5416923735ccde8728f8b076ff7f63f8ab97146e
parent7a52dffd056beeaca9a6674e9d016ec04d36e1bb (diff)
downloadorg.eclipse.papyrus-c342d2997c9a38ebd2a636317a74f3b4fe28a96e.tar.gz
org.eclipse.papyrus-c342d2997c9a38ebd2a636317a74f3b4fe28a96e.tar.xz
org.eclipse.papyrus-c342d2997c9a38ebd2a636317a74f3b4fe28a96e.zip
Bug 273415 : The viewpint feature made these tests deprecated
Change-Id: I3bffe7b1c315ef087d4544f7828687da8a34ae53 Signed-off-by: Benoit Maggi <benoit.maggi@cea.fr>
-rw-r--r--tests/junit/plugins/sysml/org.eclipse.papyrus.sysml.modelexplorer.tests/test/org/eclipse/papyrus/sysml/modelexplorer/tests/dragdrop/IBDDragDropTest.java113
1 files changed, 40 insertions, 73 deletions
diff --git a/tests/junit/plugins/sysml/org.eclipse.papyrus.sysml.modelexplorer.tests/test/org/eclipse/papyrus/sysml/modelexplorer/tests/dragdrop/IBDDragDropTest.java b/tests/junit/plugins/sysml/org.eclipse.papyrus.sysml.modelexplorer.tests/test/org/eclipse/papyrus/sysml/modelexplorer/tests/dragdrop/IBDDragDropTest.java
index b8ca2a1ec07..5b40aa594e3 100644
--- a/tests/junit/plugins/sysml/org.eclipse.papyrus.sysml.modelexplorer.tests/test/org/eclipse/papyrus/sysml/modelexplorer/tests/dragdrop/IBDDragDropTest.java
+++ b/tests/junit/plugins/sysml/org.eclipse.papyrus.sysml.modelexplorer.tests/test/org/eclipse/papyrus/sysml/modelexplorer/tests/dragdrop/IBDDragDropTest.java
@@ -1,73 +1,40 @@
-/*****************************************************************************
- * Copyright (c) 2012 CEA LIST.
- *
- * 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
- *
- *****************************************************************************/
-package org.eclipse.papyrus.sysml.modelexplorer.tests.dragdrop;
-
-import org.junit.Test;
-
-/**
- * Test for the drag and drop of IBd inside the model explorer
- */
-public class IBDDragDropTest extends AbstractDragDropTest {
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropIBDonItself() throws Exception {
- testUnexecutableDropOfDiagram(iBD_B1_Diagram, iBD_B1_Diagram);
-
- }
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropIBDonOtherBlock() throws Exception {
- testUnexecutableDropOfDiagram(iBD_B1_Diagram, b1P1_P1_EObject);
-
- }
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropIBDonSameBlock() throws Exception {
- testUnexecutableDropOfDiagram(iBD_B1_Diagram, b1_EObject);
- }
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropIBDonPackage() throws Exception {
- testUnexecutableDropOfDiagram(iBD_B1_Diagram, p1_EObject);
- }
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropBDDonSubPackage() throws Exception {
- testExecutableDropOfDiagram(bDD_Main_Diagram, p1_EObject);
- }
-
- /**
- * Test on itself. Should do nothing
- */
- @Test
- public void testDragDropBDDonBlock() throws Exception {
- testUnexecutableDropOfDiagram(bDD_Main_Diagram, b1_EObject);
- }
-
-}
+/*****************************************************************************
+ * Copyright (c) 2012 CEA LIST.
+ *
+ * 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
+ *
+ *****************************************************************************/
+package org.eclipse.papyrus.sysml.modelexplorer.tests.dragdrop;
+
+import org.junit.Test;
+
+/**
+ * Test for the drag and drop of IBd inside the model explorer
+ */
+public class IBDDragDropTest extends AbstractDragDropTest {
+
+ /**
+ * Test on itself. Should do nothing
+ */
+ @Test
+ public void testDragDropIBDonItself() throws Exception {
+ testUnexecutableDropOfDiagram(iBD_B1_Diagram, iBD_B1_Diagram);
+
+ }
+
+ /**
+ * Test on itself. Should do nothing
+ */
+ @Test
+ public void testDragDropBDDonBlock() throws Exception {
+ testUnexecutableDropOfDiagram(bDD_Main_Diagram, b1_EObject);
+ }
+
+}

Back to the top