Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCamille Letavernier2016-03-24 12:12:44 +0000
committerCamille Letavernier2016-03-24 12:29:25 +0000
commit5c5417986e802140afb93e07a233ebc4f2f62c2a (patch)
treed162cb4ff7152b44602d3b13e1e831e16586459d /tests
parentca4ab89164011e6e3a996e77a352057b5a0166d5 (diff)
downloadorg.eclipse.papyrus-5c5417986e802140afb93e07a233ebc4f2f62c2a.tar.gz
org.eclipse.papyrus-5c5417986e802140afb93e07a233ebc4f2f62c2a.tar.xz
org.eclipse.papyrus-5c5417986e802140afb93e07a233ebc4f2f62c2a.zip
Bug 490206: [SysML] Remove SysML 1.1 from Papyrus Neon, and move it to
Extra https://bugs.eclipse.org/bugs/show_bug.cgi?id=490206 - Remove SysML Requirements Diagram Tests from the Test Feature - Remove SysML Requirements Table Tests from the Test Feature - Remove the dependency from All Extra Tests to these plug-ins Change-Id: I7422b6eabdc9621edbc7baf0678853d685934638 Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'tests')
-rw-r--r--tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF2
-rw-r--r--tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllSysMLTests.java7
2 files changed, 5 insertions, 4 deletions
diff --git a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF
index cab21bceebb..b7475e6cd08 100644
--- a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF
+++ b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF
@@ -14,10 +14,8 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.papyrus.sysml.diagram.blockdefinition.tests;bundle-version="1.2.0",
org.eclipse.papyrus.sysml.diagram.internalblock.tests;bundle-version="1.2.0",
org.eclipse.papyrus.sysml.diagram.parametric.tests;bundle-version="1.2.0",
- org.eclipse.papyrus.sysml.diagram.requirement.tests;bundle-version="1.2.0",
org.eclipse.papyrus.sysml.modelexplorer.tests;bundle-version="1.2.0",
org.eclipse.papyrus.sysml.nattable.allocation.tests;bundle-version="1.2.0",
- org.eclipse.papyrus.sysml.nattable.requirement.tests;bundle-version="1.2.0",
org.eclipse.papyrus.sysml.service.types.tests;bundle-version="1.2.0"
Bundle-Vendor: Eclipse Modeling Project
Bundle-ActivationPolicy: lazy
diff --git a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllSysMLTests.java b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllSysMLTests.java
index 4ff7c756e8b..3f94945d009 100644
--- a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllSysMLTests.java
+++ b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllSysMLTests.java
@@ -37,9 +37,12 @@ public class AllSysMLTests {
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.modelexplorer.tests.suites.AllTests.class));
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.diagram.internalblock.tests.suites.AllTests.class));
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.diagram.blockdefinition.tests.suites.AllTests.class));
- suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.diagram.requirement.test.AllTests.class));
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.diagram.parametric.tests.suites.AllTests.class));
- suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.nattable.requirement.tests.tests.AllTests.class));
+
+ // FIXME Disabled for Bug 490206
+ // suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.diagram.requirement.test.AllTests.class));
+ // suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.nattable.requirement.tests.tests.AllTests.class));
+
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.nattable.allocation.tests.tests.AllTests.class));
}
}

Back to the top