public void TestStepExecutionComplete(QTF.TestStep testStep, QTF.TestExecutionCompleteEventArgs eventArgs)
 {
     // Enter runtime event handler code here
 }
 public void TestStepExecutionBegin(QTF.TestStep testStep)
 {
     // Enter runtime event handler code here
 }
Example #3
0
 public bool RemoveTestStep(TestStep testStep)
 {
     return(RemoveTestScriptObject(testStep));
 }
Example #4
0
 public int FindTestStepIndex(TestStep testStep)
 {
     return(FindTestScriptObjectIndex(testStep));
 }
Example #5
0
 public TestStep AddTestStep(TestStep testStep, int index = -1)
 {
     return(InsertTestScriptObject(testStep, index) as TestStep);
 }