StatechartLocalReactions.sctunit 517 B

12345678910111213141516171819
  1. testclass StatechartLocalReactions for statechart StatechartLocalReactions {
  2. @Test
  3. operation statechartLocalReactionsTest(){
  4. enter
  5. assert active (StatechartLocalReactions.main_region.S1)
  6. assert active (StatechartLocalReactions.region2.a)
  7. while (myInt < 10) {
  8. assert active (StatechartLocalReactions.region2.a)
  9. if(myInt%2 == 0){
  10. assert active (StatechartLocalReactions.main_region.S1)
  11. }else {
  12. assert active (StatechartLocalReactions.main_region.S2)
  13. }
  14. proceed 1 cycle
  15. }
  16. }
  17. }