Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 9567b6dd407684d8465b3d4ecea3b73eddd71ca8 (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
/*****************************************************************************
 * Copyright (c) 2019 CEA LIST and others.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *   Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
 *****************************************************************************/

package org.eclipse.papyrus.uml.diagram.properties.tests;

import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CanonicalObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.ConnectionDecorationStyleObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CustomBooleanStyleWithStoreObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CustomDoubleStyleWithStoreObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CustomIntStyleCompartmentObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CustomIntStyleWithStoreObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.CustomStringStyleCompartmentObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.DiagramLabelObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.RulersUnitStyleObservableValueTest;
import org.eclipse.papyrus.uml.diagram.properties.databinding.tests.SwitchOrientationObservableValueTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;

/**
 * Test suite for the UML Diagram Properties bundle.
 */
@RunWith(ClassificationSuite.class)
@SuiteClasses({
		// Tests for diagram observable values
		CanonicalObservableValueTest.class,
		ConnectionDecorationStyleObservableValueTest.class,
		CustomStringStyleCompartmentObservableValueTest.class,
		CustomIntStyleCompartmentObservableValueTest.class,
		DiagramLabelObservableValueTest.class,
		CustomBooleanStyleWithStoreObservableValueTest.class,
		CustomDoubleStyleWithStoreObservableValueTest.class,
		CustomIntStyleWithStoreObservableValueTest.class,
		RulersUnitStyleObservableValueTest.class,

		// Test for activity diagram specific observable value
		SwitchOrientationObservableValueTest.class,
})
public class AllTests {
	// Everything is specified in class annotations
}

Back to the top