1234567891011121314151617181920212223242526 |
- package tests
- testclass ConstOnlyDefaultScope for statechart declarations.ConstOnlyDefaultScope {
- /*
- * Test is the statechart is entered correctly.
- */
- operation statechartEntry(){
- enter
- assert active(declarations.ConstOnlyDefaultScope.main_region.A)
-
- }
-
- /*
- * Test is the statechart is entered correctly.
- */
- operation stateTransition(){
-
- enter
- raise A.e : 1
- cycle
- assert active(declarations.ConstOnlyDefaultScope.main_region.B)
-
- }
- }
-
|