runner.py 257 B

123456789101112131415
  1. import sys
  2. sys.path.append("../")
  3. import tester
  4. import threading
  5. from sccd.runtime.statecharts_core import Event
  6. import time
  7. controller = tester.Controller(keep_running=False)
  8. try:
  9. controller.start()
  10. except KeyboardInterrupt:
  11. pass