Beispiel #1
0
 public static void Write(SubFlows subFlows, string location)
 {
     if (!subFlows.IsEmpty())
     {
         string fileName = string.Format(@"{0}\{1}-{2}.html", location, "Report", subFlows.FlowName);
         File.WriteAllText(fileName, HtmlGenerator.GenerateReport(subFlows));
     }
 }
Beispiel #2
0
 public SessionReport(string archiveLocation, string name)
 {
     subFlows = new SubFlows(archiveLocation, name);
 }