UIT_runner.py 555 B

123456789101112131415161718
  1. # -*- coding:utf-8 -*-
  2. import os, sys, time
  3. from UIT_runnerCommand import UITRunnerCommand
  4. from UIT_PathManage import UITPathManage
  5. from TData import CTData
  6. from UIT_log import error, debug, info
  7. DEBUG = True
  8. INFO =True
  9. ERROR = True
  10. class UITRunner():
  11. cls = "UATRunner"
  12. def __init__(self):
  13. self.uitData = CTData()
  14. self.uitPathManage = UITPathManage(self.uitData)
  15. self.runnerCmd = UITRunnerCommand(self.uitPathManage)
  16. # setOptionValue之后需要一个退回的pathlist来退出菜单
  17. self.executedPath = []