Пример #1
0
 /// <summary>
 /// Gets the list of defects linked to step
 /// </summary>
 /// <param name="step">TDAPIOLELib.Step Object</param>
 /// <returns>TDAPIOLELib.List Object</returns>
 public TDAPIOLELib.List GetLinkedDefectsToStep(TDAPIOLELib.Step step)
 {
     return(GetLinkedDefectsToEntities(step));
 }
Пример #2
0
 /// <summary>
 /// Links defect to test step in test run
 /// </summary>
 /// <param name="step">TDAPIOLELib.Step Object</param>
 /// <param name="bug">TDAPIOLELib.Bug Object</param>
 /// <param name="comment">Comment</param>
 /// <returns>True if Successfull</returns>
 public Boolean LinkDefectToStep(TDAPIOLELib.Step step, TDAPIOLELib.Bug bug, String comment = "")
 {
     return(LinkDefectToEntities(step, bug, comment));
 }