|
@@ -1,43 +1,33 @@
|
|
|
/**
|
|
|
- * Copyright (c) 2015 committers of YAKINDU 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:
|
|
|
- * committers of YAKINDU - initial API and implementation
|
|
|
- */
|
|
|
+* Copyright (c) 2015 committers of YAKINDU 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:
|
|
|
+* committers of YAKINDU - initial API and implementation
|
|
|
+*/
|
|
|
package org.yakindu.sct.generator.java.test;
|
|
|
import org.junit.runner.RunWith;
|
|
|
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,
|
|
|
- ConditionalExpressionTest.class, ConstantsTestsTest.class,
|
|
|
- DeclarationsTest.class, DeepEntryTest.class, DeepHistoryTest.class,
|
|
|
- DynamicChoiceTest.class, EmptyTransitionTest.class,
|
|
|
- EnterStateTest.class, EntryChoiceTest.class,
|
|
|
- EntryExitSelfTransitionTest.class, ExitOnSelfTransitionTest.class,
|
|
|
- ExitStateTest.class, FeatureCallsTest.class, FinalStateTest.class,
|
|
|
- GuardTest.class, GuardedEntryTest.class, GuardedExitTest.class,
|
|
|
- HistoryWithExitPointTest.class, HistoryWithoutInitialStepTest.class,
|
|
|
- InEventLifeCycleTest.class, IntegerExpressionsTest.class,
|
|
|
- InternalEventLifeCycleTest.class, LocalReactionsTest.class,
|
|
|
- LogicalAndTestsTest.class, LogicalOrTestsTest.class,
|
|
|
- NamedInterfaceAccessTest.class, OutEventLifeCycleTest.class,
|
|
|
- ParenthesisTest.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, ValuedEventsTest.class})
|
|
|
+@SuiteClasses({AlwaysOncycleTest.class, AssignmentAsExpressionTest.class, BitExpressionsTest.class,
|
|
|
+ BooleanExpressionsTest.class, CastExpressionsTest.class, ChoiceTest.class, CKeywordsTest.class,
|
|
|
+ ConditionalExpressionTest.class, ConstantsTestsTest.class, DeclarationsTest.class, DeepEntryTest.class,
|
|
|
+ DeepHistoryTest.class, DynamicChoiceTest.class, EmptyTransitionTest.class, EnterStateTest.class,
|
|
|
+ EntryChoiceTest.class, EntryExitSelfTransitionTest.class, ExitOnSelfTransitionTest.class, ExitStateTest.class,
|
|
|
+ FeatureCallsTest.class, FinalStateTest.class, GuardTest.class, GuardedEntryTest.class, GuardedExitTest.class,
|
|
|
+ HistoryWithExitPointTest.class, HistoryWithoutInitialStepTest.class, InEventLifeCycleTest.class,
|
|
|
+ IntegerExpressionsTest.class, InternalEventLifeCycleTest.class, LocalReactionsTest.class,
|
|
|
+ LogicalAndTestsTest.class, LogicalOrTestsTest.class, NamedInterfaceAccessTest.class,
|
|
|
+ OutEventLifeCycleTest.class, ParenthesisTest.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, ValuedEventsTest.class})
|
|
|
public class AllTestsTest {
|
|
|
}
|