Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCamille Letavernier2015-10-28 12:16:21 +0000
committerCamille Letavernier2015-10-28 12:16:21 +0000
commitec2eecad9636863ec16aa7ae5bdd0217cb2c43b5 (patch)
treed6bbc043cef2632e3c0fac7c8a7d1689b407ba50 /tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test
parent1e629b83d6abc8ecb5881b0a1b23ca54ff7ecc5d (diff)
downloadorg.eclipse.papyrus-ec2eecad9636863ec16aa7ae5bdd0217cb2c43b5.tar.gz
org.eclipse.papyrus-ec2eecad9636863ec16aa7ae5bdd0217cb2c43b5.tar.xz
org.eclipse.papyrus-ec2eecad9636863ec16aa7ae5bdd0217cb2c43b5.zip
480857: [Tests] Use ClassificationSuite instead of Suite to improve test
filtering & performances https://bugs.eclipse.org/bugs/show_bug.cgi?id=480857 Change-Id: I125b850e5c5d40773bbe79aa184fbaa398471cbe Signed-off-by: Camille Letavernier <camille.letavernier@cea.fr>
Diffstat (limited to 'tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test')
-rw-r--r--tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/tests/AllTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/tests/AllTests.java b/tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/tests/AllTests.java
index 6142a138c2d..9595ef227d1 100644
--- a/tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/tests/AllTests.java
+++ b/tests/junit/plugins/core/org.eclipse.papyrus.infra.core.tests/test/org/eclipse/papyrus/infra/core/tests/AllTests.java
@@ -31,12 +31,12 @@ import org.eclipse.papyrus.infra.core.utils.AdapterUtilsTest;
import org.eclipse.papyrus.infra.core.utils.JobBasedFutureTest;
import org.eclipse.papyrus.infra.core.utils.JobExecutorServiceTest;
import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
+import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.junit.runners.Suite.SuiteClasses;
-@RunWith(Suite.class)
+@RunWith(ClassificationSuite.class)
@SuiteClasses({
// {oep.resource}
ModelSetTest.class, AbstractModelWithSharedResourceTest.class, NestingTransactionalCommandStackTest.class, ResourceAdapterTest.class,

Back to the top