LocalEvents.sctunit 455 B

1234567891011121314151617181920212223
  1. testclass LocalEvents for statechart eventdriven.localEvents {
  2. @Test
  3. operation test() {
  4. enter
  5. assert active(eventdriven.localEvents.r1.Comp1.r.A1)
  6. assert active(eventdriven.localEvents.r2.Comp2.r.A2)
  7. raise e
  8. assert active(eventdriven.localEvents.r1.Comp1.r.D1)
  9. assert active(eventdriven.localEvents.r2.Comp2.r.D2)
  10. assert cycleCountSm == 5
  11. assert cycleCount1 == 5
  12. assert cycleCount2 == 5
  13. assert checksum == 3
  14. exit
  15. }
  16. }