- Code: Select all
public void Execute()
{
try
{
Report.Setup(ReportLevel.Info, "A001_NewCustomer.rxlog",true);
Report.SystemSummary();
Automation_Library.Recordings.A001_NewCustomer.Start();
Report.End();
}
catch(Exception e)
{
Report.Failure("Test Case Failed");
Report.Failure(e.ToString());
Report.Screenshot();
Modules.Instance.CloseAll();
}
}
But here is my problem. I want to generate one master report that just contains just information of whether the test case has passed or failed with no details whatsoever. The idea being, after a round of execution is complete I would look up this master report to see what has passed and what has failed and then dig into the detailed reports of the failed test cases to see what has gone wrong. I tried a few options so far and have remained unsuccessful. Any examples on how to accomplish this is greatly appreciated.
Thanks!