123456789101112131415161718 |
- # -*- coding:utf-8 -*-
- import os, sys, time
- from UIT_runnerCommand import UITRunnerCommand
- from UIT_PathManage import UITPathManage
- from TData import CTData
- from UIT_log import error, debug, info
- DEBUG = True
- INFO =True
- ERROR = True
- class UITRunner():
- cls = "UATRunner"
- def __init__(self):
- self.uitData = CTData()
- self.uitPathManage = UITPathManage(self.uitData)
- self.runnerCmd = UITRunnerCommand(self.uitPathManage)
- # setOptionValue之后需要一个退回的pathlist来退出菜单
- self.executedPath = []
|