|
@@ -5,75 +5,26 @@ import org.junit.runners.Suite;
|
|
|
import org.junit.runners.Suite.SuiteClasses;
|
|
|
|
|
|
@RunWith(Suite.class)
|
|
|
-@SuiteClasses({
|
|
|
- AlwaysOncycleTest.class,
|
|
|
- AssignmentAsExpressionTest.class,
|
|
|
- BitExpressionsTest.class,
|
|
|
- BooleanExpressionsTest.class,
|
|
|
- CastExpressionsTest.class,
|
|
|
- ChoiceTest.class,
|
|
|
- CKeywordsTest.class,
|
|
|
- ConditionalExpression.class,
|
|
|
- ConstantsTests.class,
|
|
|
- ConstOnlyDefaultScopeTest.class,
|
|
|
- ConstOnlyInternalScopeTest.class,
|
|
|
- ConstOnlyNamedScopeTest.class,
|
|
|
- ChildFirstExecutionHierarchyTest.class,
|
|
|
- ChildFirstLocalReactionsTest.class,
|
|
|
- DeclarationsTest.class,
|
|
|
- DeepEntryTest.class,
|
|
|
- DeepHistoryTest.class,
|
|
|
- DynamicChoiceTest.class,
|
|
|
- EmptyTransitionTest.class,
|
|
|
- EnterStateTest.class,
|
|
|
- EntryChoiceTest.class,
|
|
|
- EntryExitSelfTransitionTest.class,
|
|
|
- EntryReactionActionTest.class,
|
|
|
- EventDrivenTriggeredByEventTest.class,
|
|
|
- EventDrivenTriggeredByTimeEventTest.class,
|
|
|
- ExitOnSelfTransitionTest.class,
|
|
|
- ExitStateTest.class,
|
|
|
- FeatureCallsTest.class,
|
|
|
- FinalStateTest.class,
|
|
|
- FloatModuloTest.class,
|
|
|
- GuardTest.class,
|
|
|
- GuardedEntryTest.class,
|
|
|
- GuardedExitTest.class,
|
|
|
- HistoryWithExitPointTest.class,
|
|
|
- HistoryWithoutInitialStepTest.class,
|
|
|
- InEventLifeCycleTest.class,
|
|
|
- IntegerExpressionsTest.class,
|
|
|
- InternalEventLifeCycleTest.class,
|
|
|
- LocalReactionsTest.class,
|
|
|
- LogicalAndTests.class,
|
|
|
- LogicalOrTests.class,
|
|
|
- NamedInterfaceAccessTest.class,
|
|
|
- OperationsTest.class,
|
|
|
- OutEventLifeCycleTest.class,
|
|
|
- ParenthesisTest.class,
|
|
|
- ParentFirstExecutionHierarchyTest.class,
|
|
|
- ParentFirstLocalReactionsTest.class,
|
|
|
- PriorityValuesTest.class,
|
|
|
- RaiseEventTest.class,
|
|
|
- ReadOnlyVariableTest.class,
|
|
|
- SameNameDifferentRegionTest.class,
|
|
|
- ShallowHistoryTest.class,
|
|
|
- ShallowHistoryWithDeepEntryTest.class,
|
|
|
- SimpleEventTest.class,
|
|
|
- SimpleHierachyTest.class,
|
|
|
- StatechartActiveTest.class,
|
|
|
- StatechartLocalReactionsTest.class,
|
|
|
- StateIsActiveTest.class,
|
|
|
- StaticChoiceTest.class,
|
|
|
- STextKeywordsInStatesAndRegionsTest.class,
|
|
|
- StringExpressionsTest.class,
|
|
|
- SyncForkTest.class,
|
|
|
- SyncJoinTest.class,
|
|
|
- TransitionWithoutConditionTest.class,
|
|
|
- TriggerGuardExpressionsTest.class,
|
|
|
- TriggerExpressionPrecedenceTest.class,
|
|
|
- ValuedEventsTest.class,
|
|
|
- TypeAliasTest.class
|
|
|
-})
|
|
|
+@SuiteClasses({AlwaysOncycleTest.class, AssignmentAsExpressionTest.class, BitExpressionsTest.class,
|
|
|
+ BooleanExpressionsTest.class, CastExpressionsTest.class, ChoiceTest.class, CKeywordsTest.class,
|
|
|
+ ConditionalExpression.class, ConstantsTests.class, ConstOnlyDefaultScopeTest.class,
|
|
|
+ ConstOnlyInternalScopeTest.class, ConstOnlyNamedScopeTest.class, ChildFirstExecutionHierarchyTest.class,
|
|
|
+ ChildFirstLocalReactionsTest.class, DeclarationsTest.class, DeepEntryTest.class, DeepHistoryTest.class,
|
|
|
+ DynamicChoiceTest.class, EmptyTransitionTest.class, EnterStateTest.class, EntryChoiceTest.class,
|
|
|
+ EntryExitSelfTransitionTest.class, EntryReactionActionTest.class, EventDrivenInternalEventTest.class,
|
|
|
+ EventDrivenTriggeredByEventTest.class, EventDrivenTriggeredByTimeEventTest.class,
|
|
|
+ ExitOnSelfTransitionTest.class, ExitStateTest.class, FeatureCallsTest.class, FinalStateTest.class,
|
|
|
+ FloatModuloTest.class, GuardTest.class, GuardedEntryTest.class, GuardedExitTest.class,
|
|
|
+ HistoryWithExitPointTest.class, HistoryWithoutInitialStepTest.class, InEventLifeCycleTest.class,
|
|
|
+ IntegerExpressionsTest.class, InternalEventLifeCycleTest.class, LocalReactionsTest.class, LogicalAndTests.class,
|
|
|
+ LogicalOrTests.class, LocalEventsTest.class, NamedInterfaceAccessTest.class, NoLocalEventsTest.class, OperationsTest.class,
|
|
|
+ OutEventLifeCycleTest.class, ParenthesisTest.class, ParentFirstExecutionHierarchyTest.class,
|
|
|
+ ParentFirstLocalReactionsTest.class, PriorityValuesTest.class, RaiseEventTest.class, ReadOnlyVariableTest.class,
|
|
|
+ SameNameDifferentRegionTest.class, ShallowHistoryTest.class, ShallowHistoryWithDeepEntryTest.class,
|
|
|
+ SimpleEventTest.class, SimpleHierachyTest.class, StatechartActiveTest.class, StatechartLocalReactionsTest.class,
|
|
|
+ StateIsActiveTest.class, StaticChoiceTest.class, STextKeywordsInStatesAndRegionsTest.class,
|
|
|
+ StringExpressionsTest.class, SyncForkTest.class, SyncJoinTest.class, TransitionWithoutConditionTest.class,
|
|
|
+ TriggerGuardExpressionsTest.class, TriggerExpressionPrecedenceTest.class, ValuedEventsTest.class,
|
|
|
+ TypeAliasTest.class})
|
|
|
public class AllTests {
|
|
|
}
|