Page 1 of 1

Missing Suite Report

Posted: Tue May 08, 2012 10:33 am
by ggaspari
Hi guys,
I tried to change the report folder ( .rxtst properties->report file directory) but in such case, the test suite report will be created in defined directory, but the other reports (ranorex test report) will be created always in the default REPORTS folder within solutions folder. Is there a way to get both reports within the same directory which is not the default one?

thanx

Re: Missing Suite Report

Posted: Tue May 08, 2012 2:59 pm
by Support Team
Hi,

This is unfortunately not possible, but I will add an issue to our internal feature request list.

Regards,
Markus
Ranorex Support Team

Re: Missing Suite Report

Posted: Wed May 09, 2012 7:54 am
by ggaspari
ok, sounds good
at least is not my fault ;-)

thanx

Re: Missing Suite Report

Posted: Thu May 10, 2012 4:59 pm
by MikeBuck
Why not define the standard reports directory in the script?

My Suite Report is saved to ProjectName\Suite_Results\ While the individual test reports are saved to ProjectName\TestCaseReports

As part of my setup I have this defined for my "TestCase Reports":

Code: Select all

Report.Setup(ReportLevel.Info, sReportLocName+"\\"+Tc.DisplayName.Replace("->","_")+".xml", true);

Prior to that for my Suite Level tests - (Reporting V3) I have this definition:

Code: Select all

TestReport.Setup(ReportLevel.Info, Global.sAutoLocation+"\\Suite_Results\\CustomList_Suite_"+Global.sTS_ReportName+".rxlog", true);
        	
I hope this is a help!

Mike Buckley