public static void Save(this ReportConfiguration configuration, string fullPath)
 {
     ReportXMLHelper.Save(configuration, fullPath);
 }
 private static TestInformations Load(string fullPath)
 {
     return(ReportXMLHelper.Load <TestInformations>(fullPath, "Excteption while loading TestReport, Path = " + fullPath));
 }
 public static ReportConfiguration Load(string fullPath)
 {
     //ReportXMLHelper.Load<NunitGoConfiguration>
     //return null;
     return(ReportXMLHelper.Load <ReportConfiguration>(fullPath));
 }