Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: de64c7d6067f9844038b300585716eca7be59264 (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
/*****************************************************************************
 * Copyright (c) 2013 CEA
 *
 *    
 * 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:
 *   Soyatec - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.uml.diagram.sequence.tests.bug.pro20130916;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;


/**
 * @author Jin Liu (jin.liu@soyatec.com)
 */
@RunWith(Suite.class)
@SuiteClasses({ CombinedFragmentStereotypesTest.class, ContinuationStereotypesTest.class, DurationConstraintStereotypesTest.class, DurationObservationStereotypesTest.class, ExecutionSpecificationStereotypesTest.class, Fixbug_EditorCrashesWhenMovingGeneralOrdering_417373.class, Fixbug_OrderFragmentsAfterMessageReconnection_417375.class, Fixbug_OrderFragmentsAfterResizeExecutions_417374.class, GateStereotypesTest.class, GeneralOrderingStereotypesTest.class, InteractionOperandStereotypesTest.class, InteractionStereotypesTest.class, InteractionUseStereotypesTest.class, LifelineStereotypesTest.class, MessageStereotypesTest.class, New_DisplayBehaviorForBehaviorExecutionSpecification_417376.class, New_DisplayInvariantForStateInvariant_417377.class, StateInvariantStereotypesTest.class, TimeConstraintStereotypesTest.class, TimeObservationStereotypesTest.class, Fixbug_LifelineManagement_417365.class })
public class AllTests_20130916 {

}

Back to the top