public string GetTestOutputFullPath(Guid testGuid, DateTime testFinishDateTime)
 {
     return(Path.Combine(GetTestOutputFolderPath(testGuid),
                         NamesProvider.GetTestOutputFileName(testFinishDateTime)));
 }
 public string GetTestScreenshotFullPath(Guid testGuid, DateTime creationDateTime)
 {
     return(Path.Combine(GetScreenshotFolderPath(testGuid),
                         NamesProvider.GetScreenshotFileName(creationDateTime)));
 }
 public string GetRunFullPath(Guid runGuid)
 {
     return(Path.Combine(RunsFolderPath, NamesProvider.GetRunFileName(runGuid)));
 }