Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Redor2017-06-12 08:10:16 +0000
committerLaurent Redor2017-06-16 14:23:09 +0000
commit51cf66202190f29c64aaea3e796483c83e8287ad (patch)
tree001bccf10423d00d1924bab59e1c4434f33ebe2e
parent361048acac256c62e2210a52f26e5c1e9a7deefb (diff)
downloadorg.eclipse.sirius-51cf66202190f29c64aaea3e796483c83e8287ad.tar.gz
org.eclipse.sirius-51cf66202190f29c64aaea3e796483c83e8287ad.tar.xz
org.eclipse.sirius-51cf66202190f29c64aaea3e796483c83e8287ad.zip
[515378] Add test in suite
Bug: 515378 Change-Id: Ic82c2460795edc892d0b50ca8a11deb4311da030 Signed-off-by: Laurent Redor <laurent.redor@obeo.fr>
-rw-r--r--plugins/org.eclipse.sirius.tests.junit/src/org/eclipse/sirius/tests/suite/common/AllCommonPluginTests.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.eclipse.sirius.tests.junit/src/org/eclipse/sirius/tests/suite/common/AllCommonPluginTests.java b/plugins/org.eclipse.sirius.tests.junit/src/org/eclipse/sirius/tests/suite/common/AllCommonPluginTests.java
index 012c669fa2..3db9ffb4d5 100644
--- a/plugins/org.eclipse.sirius.tests.junit/src/org/eclipse/sirius/tests/suite/common/AllCommonPluginTests.java
+++ b/plugins/org.eclipse.sirius.tests.junit/src/org/eclipse/sirius/tests/suite/common/AllCommonPluginTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010, 2016 THALES GLOBAL SERVICES.
+ * Copyright (c) 2010, 2017 THALES GLOBAL SERVICES.
* 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
@@ -129,6 +129,7 @@ import org.eclipse.sirius.tests.unit.diagram.migration.MigrationLabelBoundsToLoc
import org.eclipse.sirius.tests.unit.diagram.migration.MigrationOfCollapsedBorderedNodeTest;
import org.eclipse.sirius.tests.unit.diagram.migration.MigrationOfHideLabelFilterInconsistencyTest;
import org.eclipse.sirius.tests.unit.diagram.migration.MigrationRoutingStyleEndUserOverrideTest;
+import org.eclipse.sirius.tests.unit.diagram.migration.NoteShapeDefaultLabelAlignmentMigrationTest;
import org.eclipse.sirius.tests.unit.diagram.migration.OptionalLayerToAdditionalLayerMigrationTest;
import org.eclipse.sirius.tests.unit.diagram.migration.ReferencedModelResourceMigrationTest;
import org.eclipse.sirius.tests.unit.diagram.migration.RemoveAcceleoReferencesMigrationTest;
@@ -217,6 +218,7 @@ public class AllCommonPluginTests extends TestCase {
suite.addTestSuite(MigrationFromSirius1_0_0_M5Test.class);
suite.addTestSuite(ComputedStyleDescriptionCachePackingFileMigrationParticipantTests.class);
suite.addTestSuite(RgbValuesEDataTypeMigrationTest.class);
+ suite.addTestSuite(NoteShapeDefaultLabelAlignmentMigrationTest.class);
suite.addTestSuite(ConvertViewpointModelingProjectToSiriusModelingProjectTest.class);
suite.addTestSuite(FontFormatMigrationTest.class);
suite.addTestSuite(BorderSizeMigrationTest.class);

Back to the top