Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas FAUVERGUE2016-05-31 14:50:28 +0000
committerGerrit Code Review @ Eclipse.org2016-06-01 08:30:07 +0000
commit33cbc1b143ccb1f5b7c5aa00c120d654a381dd48 (patch)
tree5d10510cae21137980b187ec78b63dd1445e3185 /tests/junit/plugins/uml/diagram
parentbd94625084693fb3336ad98d530f65bb5e220569 (diff)
downloadorg.eclipse.papyrus-33cbc1b143ccb1f5b7c5aa00c120d654a381dd48.tar.gz
org.eclipse.papyrus-33cbc1b143ccb1f5b7c5aa00c120d654a381dd48.tar.xz
org.eclipse.papyrus-33cbc1b143ccb1f5b7c5aa00c120d654a381dd48.zip
JUnit tests failed by sysml.
The Stereotype Element List tests failures were corrected by the SysMLCopy modification. The SysML tests failure in reorient association must be invalid (maybe this can be done in SysML plugin). Change-Id: I20ec447c27fd81f0167900b5378bd7bb04b48fcd Signed-off-by: Nicolas FAUVERGUE <nicolas.fauvergue@all4tec.net>
Diffstat (limited to 'tests/junit/plugins/uml/diagram')
-rw-r--r--tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common.tests/src/org/eclipse/papyrus/uml/diagram/common/tests/tests/Bug418509_ReorientationAssociation.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common.tests/src/org/eclipse/papyrus/uml/diagram/common/tests/tests/Bug418509_ReorientationAssociation.java b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common.tests/src/org/eclipse/papyrus/uml/diagram/common/tests/tests/Bug418509_ReorientationAssociation.java
index 2512db1755c..fbee05551ae 100644
--- a/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common.tests/src/org/eclipse/papyrus/uml/diagram/common/tests/tests/Bug418509_ReorientationAssociation.java
+++ b/tests/junit/plugins/uml/diagram/org.eclipse.papyrus.uml.diagram.common.tests/src/org/eclipse/papyrus/uml/diagram/common/tests/tests/Bug418509_ReorientationAssociation.java
@@ -35,6 +35,7 @@ import org.eclipse.gmf.runtime.notation.View;
import org.eclipse.papyrus.commands.wrappers.GEFtoEMFCommandWrapper;
import org.eclipse.papyrus.infra.core.resource.ModelSet;
import org.eclipse.papyrus.infra.emf.gmf.command.GMFtoEMFCommandWrapper;
+import org.eclipse.papyrus.junit.framework.classification.InvalidTest;
import org.eclipse.papyrus.junit.framework.classification.tests.AbstractPapyrusTest;
import org.eclipse.papyrus.junit.utils.DiagramUtils;
import org.eclipse.papyrus.junit.utils.rules.PapyrusEditorFixture;
@@ -205,6 +206,7 @@ public class Bug418509_ReorientationAssociation extends AbstractPapyrusTest {
* Case of an association between A and B, end a is owned by Block B and end b is owned by the association. End a is navigable but not End b. Test changes A to C.
*
*/
+ @InvalidTest("The SysML is no more available, so the BDD diagram can't be opened")
@Test
@PluginResource("/resources/418509/model.di")
public void testSysMLCase1() {
@@ -233,6 +235,7 @@ public class Bug418509_ReorientationAssociation extends AbstractPapyrusTest {
/**
* Case of an association between A and B, end a is owned by Block B and end b is owned by the association. End a is navigable but not End b. Test changes B to D.
*/
+ @InvalidTest("The SysML is no more available, so the BDD diagram can't be opened")
@Test
@PluginResource("/resources/418509/model.di")
public void testSysMLCase2() {
@@ -261,6 +264,7 @@ public class Bug418509_ReorientationAssociation extends AbstractPapyrusTest {
/**
* Case of an association between A and B, end a is owned by Block B and end b is owned by Block A. Both ends are navigable. Test changes B to D.
*/
+ @InvalidTest("The SysML is no more available, so the BDD diagram can't be opened")
@Test
@PluginResource("/resources/418509/model.di")
public void testSysMLCase3() {
@@ -296,6 +300,7 @@ public class Bug418509_ReorientationAssociation extends AbstractPapyrusTest {
/**
* Case of an association between A and B, Both ends are not navigable and contained by the association. Test changes B to D.
*/
+ @InvalidTest("The SysML is no more available, so the BDD diagram can't be opened")
@Test
@PluginResource("/resources/418509/model.di")
public void testSysMLCase4() {
@@ -331,6 +336,7 @@ public class Bug418509_ReorientationAssociation extends AbstractPapyrusTest {
/**
* Case of an Directed Composition association between B1 and B2, end B2 is owned by Block B1 and end B2 is owned by Association. Test changes B2 to B3.
*/
+ @InvalidTest("The SysML is no more available, so the BDD diagram can't be opened")
@Test
@PluginResource("/resources/418509/model.di")
public void testSysMLCase5() {

Back to the top