Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorvlorenzo2013-07-03 15:08:03 +0000
committervlorenzo2013-07-03 15:08:03 +0000
commitaf097cbcea02199f253e0b1bc32cae4aee05e917 (patch)
tree9c7f5d2a4600ba2c87a9208087886e2eaaa8b82e /tests
parent5216737713d03f54bbe1338ddd345bf59ec69865 (diff)
downloadorg.eclipse.papyrus-af097cbcea02199f253e0b1bc32cae4aee05e917.tar.gz
org.eclipse.papyrus-af097cbcea02199f253e0b1bc32cae4aee05e917.tar.xz
org.eclipse.papyrus-af097cbcea02199f253e0b1bc32cae4aee05e917.zip
412225: [Table 2] The generated table editor must be tested
https://bugs.eclipse.org/bugs/show_bug.cgi?id=412225 Add the new plugin oep.infra.nattable.model.editor.tests to the build.
Diffstat (limited to 'tests')
-rw-r--r--tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/META-INF/MANIFEST.MF3
-rw-r--r--tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllTests.java1
-rw-r--r--tests/junit/extraplugins/table/org.eclipse.papyrus.infra.nattable.model.editor.tests/META-INF/MANIFEST.MF2
3 files changed, 5 insertions, 1 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 c1025d4db29..cee2e2104fa 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
@@ -17,6 +17,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.papyrus.cdo.validation.problems.tests;bundle-version="0.10.0",
org.eclipse.papyrus.uml.nattable.tests;bundle-version="0.10.0",
org.eclipse.papyrus.sysml.nattable.requirement.tests;bundle-version="0.10.0",
- org.eclipse.papyrus.infra.nattable.views.editor.tests;bundle-version="0.10.0"
+ org.eclipse.papyrus.infra.nattable.views.editor.tests;bundle-version="0.10.0",
+ org.eclipse.papyrus.infra.nattable.model.editor.tests;bundle-version="0.10.0"
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
diff --git a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllTests.java b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllTests.java
index 5f8b434626a..d97d6334d09 100644
--- a/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllTests.java
+++ b/tests/junit/extraplugins/org.eclipse.papyrus.tests.extra/src/org/eclipse/papyrus/tests/extra/AllTests.java
@@ -54,6 +54,7 @@ public class AllTests {
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.uml.nattable.tests.tests.AllTests.class));
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.sysml.nattable.requirement.tests.tests.AllTests.class));
suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.infra.nattable.views.tests.tests.AllTests.class));
+ suiteClasses.add(new PluginTestSuiteClass(org.eclipse.papyrus.infra.nattable.model.editor.tests.tests.AllTests.class));
}
diff --git a/tests/junit/extraplugins/table/org.eclipse.papyrus.infra.nattable.model.editor.tests/META-INF/MANIFEST.MF b/tests/junit/extraplugins/table/org.eclipse.papyrus.infra.nattable.model.editor.tests/META-INF/MANIFEST.MF
index 4b510a34366..07902b0cf6c 100644
--- a/tests/junit/extraplugins/table/org.eclipse.papyrus.infra.nattable.model.editor.tests/META-INF/MANIFEST.MF
+++ b/tests/junit/extraplugins/table/org.eclipse.papyrus.infra.nattable.model.editor.tests/META-INF/MANIFEST.MF
@@ -14,3 +14,5 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.emf.transaction
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ActivationPolicy: lazy
+Export-Package: org.eclipse.papyrus.infra.nattable.model.editor.tests,
+ org.eclipse.papyrus.infra.nattable.model.editor.tests.tests

Back to the top