示例#1
0
 public BuildRelease(ExcelDataAccess dtAccess, string DesPath,string scriptName)
 {
     _dtAccess = dtAccess;
     listTCase = _dtAccess.getTestcases();
     listTStep = _dtAccess.getTeststeps();
     Commands = _dtAccess.getTestcommands();
     Datas = _dtAccess.getTestdatas();
     string DesRelease = DesPath;
     //build = new Build(DesRelease, scriptName);
 }
示例#2
0
 public BuildRelease(ExcelDataAccess dtAccess,string DesPath)
 {
     _dtAccess = dtAccess;
     listTCase = _dtAccess.getTestcases();
     listTStep = _dtAccess.getTeststeps();
     Commands = _dtAccess.getTestcommands();
     _ListTestConfig = _dtAccess.getTestConfigs();
     Datas = _dtAccess.getTestdatas();
     _DesPath = DesPath;
     //build = new Build(DesRelease);
 }
 public DebugMultithread(ExcelDataAccess dtAccess)
 {
     List<TestCommand> Commands = dtAccess.getTestcommands();
     ComponentFunction.Initialize(Commands);
     _dtAccess = dtAccess;
 }