123456789101112131415161718 |
- 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)
-
- self.executedPath = []
|