예제 #1
0
import sys, os
sys.path.append("./")
from baseCase import BaseTestCaseClass

if __name__ == "__main__":
    awkExTest = BaseTestCaseClass("./common_conf.conf")
    awkExTest.set_utp_name("awk_ex")
    awkExTest.run_me()
예제 #2
0
 def __init__(self):
     self.conf_path = "./common_conf.conf"
     self.utp_name = ""
     BaseTestCaseClass.__init__(self,self.conf_path,self.utp_name)
예제 #3
0
import sys,os
sys.path.append("./")
from baseCase import BaseTestCaseClass

if __name__ == "__main__":
    awkExTest = BaseTestCaseClass("./common_conf.conf")
    awkExTest.set_utp_name("awk_ex")
    awkExTest.run_me()