Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 875fb41e54c92834219170046815162e56dc5a28 (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
/*****************************************************************************
 * Copyright (c) 2012, 2018 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:
 *   CEA LIST - Initial API and implementation
 *   Christian W. Damus - bug 533673
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.sequence.tests.bug;

import org.eclipse.papyrus.junit.framework.classification.ClassificationSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite.SuiteClasses;

/**
 * All tests for bug.
 */
@RunWith(ClassificationSuite.class)
@SuiteClasses({
		TestCombinedFragmentKind_364710.class,
		TestCombinedFragmentOperand_364701.class,
		TestMessagesDeletion_364828.class,
		TestNestedCombinedFragment_364795.class,
		TestSynchronousMessageCreation_364827.class,
		/**
		 * TestCombinedFragmentGates_364816.class,
		 * TestCombinedFragmentDeletion_364804.class,
		 */
		TestAdvancedDragDrop_364696.class,
		TestGuardEdition_364808.class,
		CombinedFragmentRegressionTest.class,
		TestCombinedFragmentOperandsLayout.class,
		TestCFOperandsCoveredNodes.class,
		TestCFOperandsSemanticCoverage.class,
})
public class BugTests {

}

Back to the top