


Problem :
I didn't want to set the report location using Ranorex as this will become problematic because i will need to explain every time someone installing the application.
Solution :
Set the location in the Code so that they just need to pull my project from a Repo and no further configuration needed.
''Code'' **I added my code in the 'SETUP' container
string filename = TestSuite.CurrentTestContainer.Name +" " + System.DateTime.Now.ToString("dd-MM-yyyy_hh-mm-ss");
System.IO.Directory.CreateDirectory(@"C:\Temp\Reports\"+ filename);
TestReport.Setup(ReportLevel.Debug,@"C:\Temp\Reports\" + filename + @"\myreport.rxlog",true); //Report saving code
TestReport.SaveReport();
TestReport.EndTestContainerSetup();