Exemplo n.º 1
0
 /// <summary>
 /// Clone当前用户
 /// </summary>
 /// <param name="yourNmae">克隆出的用户的标识名</param>
 /// <returns>克隆体</returns>
 public CaseRunner Clone(string yourNmae)
 {
     if (runerActuator.IsActuatorDataFill)
     {
         CaseRunner cloneRunner = new CaseRunner(yourNmae, (CaseActionActuator)runerActuator.Clone());
         cloneRunner.runnerCasePath = this.runnerCasePath;
         cloneRunner.startCell      = this.startCell;           //由于克隆用户的Cell数据是公用根用户的,所以起始点的指向也是可以共用的
         return(cloneRunner);
     }
     else
     {
         return(null);
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// 删除一个用户
 /// </summary>
 /// <param name="yourCaseRunner">被删除用户</param>
 public void DelRunner(CaseRunner yourCaseRunner)
 {
     listView_CaseRunner.DelRunner(yourCaseRunner);
     caseRunnerList.Remove(yourCaseRunner);
 }
Exemplo n.º 3
0
 /// <summary>
 /// 添加一个新用户
 /// </summary>
 /// <param name="yourCaseRunner">新用户</param>
 public void AddRunner(CaseRunner yourCaseRunner)
 {
     listView_CaseRunner.AddRunner(yourCaseRunner);
     caseRunnerList.Add(yourCaseRunner);
 }