Esempio n. 1
0
 private static string GetTestPlanFolderId(string separateAti, string separateAtIMinusOne)
 {
     if (!ExploredTestPlanFolder.ContainsKey(separateAti))
     {
         QCTestFolder testPlanFol = QcRestClient.GetTestPlansByNameAndParentId(separateAti, separateAtIMinusOne);
         ExploredTestPlanFolder.Add(testPlanFol.Name, testPlanFol.Id);
         return(testPlanFol.Id);
     }
     else
     {
         return(ExploredTestPlanFolder[separateAti]);
     }
 }