Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6f0b98116e4de2820f3c33869d40a2465d17d1be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*****************************************************************************
 * Copyright (c) 2014, 2017 CEA LIST, Christian W. Damus, and others.
 *
 * 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
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *  Christian W. Damus - bug 471954
 *  Thanh Liem PHAN (ALL4TEC) thanhliem.phan@all4tec.net - Bug 507488
 *  Micka�l ADAM (ALL4TEC) mickael.adam@all4tec.net - Bug 518645
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.common.tests.tests;


import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.eclipse.papyrus.uml.diagram.common.canonical.tests.CanonicalRegressionTest;
import org.eclipse.papyrus.uml.diagram.common.tests.css.Bug431694_UndoDeleteTest;
import org.eclipse.papyrus.uml.diagram.common.tests.parser.HTMLCleanerTestCase;
import org.eclipse.papyrus.uml.diagram.common.tests.parser.HTMLCornerBentFigureTestCase;
import org.eclipse.papyrus.uml.diagram.common.tests.parser.MultiplicityStringFormatterTestCase;
import org.eclipse.papyrus.uml.diagram.common.tests.parser.ValueSpecificationUtilTestCase;
import org.eclipse.papyrus.uml.diagram.common.tests.stereotype.display.AppliedStereotypeDisplayCompartmentClassDiagramTest;
import org.eclipse.papyrus.uml.diagram.common.tests.stereotype.display.AppliedStereotypeDisplayNodeClassDiagramTest;
import org.eclipse.papyrus.uml.diagram.common.tests.stereotype.display.AppliedStereotypeDisplayStructureTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;

@RunWith(ClassificationSuite.class)
@SuiteClasses({
		AppliedStereotypeDisplayStructureTest.class,
		AppliedStereotypeDisplayNodeClassDiagramTest.class,
		AppliedStereotypeDisplayCompartmentClassDiagramTest.class,
		CommonBendpointsTest.class,
		HTMLCleanerTestCase.class,
		HTMLCornerBentFigureTestCase.class,
		Bug431694_UndoDeleteTest.class,
		Bug418509_ReorientationAssociation.class,
		MultiplicityStringFormatterTestCase.class,
		ValueSpecificationUtilTestCase.class,
		CanonicalRegressionTest.class,
		ShapeCustomisationTest.class,
		Bug476873_MoveCommandTest.class,
		Bug495430_DuplicatedTransitionsTest.class,
		Bug488744_PortPositionTest.class,
		Bug507488_BinaryRelationshipLabelPositionTest.class,
		StereotypePropertyReferenceEdgeTest.class,
		EdgeCustomizationTest.class
})

public class AllTests {
	// JUnit 4 test suite
}

Back to the top