Revision: 511 http://cishell.svn.sourceforge.net/cishell/?rev=511&view=rev Author: mwlinnem Date: 2007-09-10 09:43:04 -0700 (Mon, 10 Sep 2007) Log Message: ----------- Changed the order reports are shown in (all tests report isn't as friendly as the converter report, so best to put the converter report at the top). Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.algorithm/src/org/cishell/testing/convertertester/algorithm/ConverterTesterAlgorithm.java Modified: trunk/testing/org.cishell.testing.convertertester.algorithm/src/org/cishell/testing/convertertester/algorithm/ConverterTesterAlgorithm.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.algorithm/src/org/cishell/testing/convertertester/algorithm/ConverterTesterAlgorithm.java 2007-09-10 16:38:02 UTC (rev 510) +++ trunk/testing/org.cishell.testing.convertertester.algorithm/src/org/cishell/testing/convertertester/algorithm/ConverterTesterAlgorithm.java 2007-09-10 16:43:04 UTC (rev 511) @@ -151,26 +151,6 @@ readmeReport.getName(), null); addReturn(readMeData); - //return all tests report - - AllTestsReport allReport = allGen.getAllTestsReport(); - File allReportFile = allReport.getAllTestsReport(); - Data allReportData = createReportData(allReportFile, - allReport.getName() , null); - addReturn(allReportData); - - TestReport[] sTestReports = - allReport.getSuccessfulTestReports(); - addFilePasses(sTestReports, allReportData); - - TestReport[] ppTestReports = - allReport.getPartialSuccessTestReports(); - addFilePasses(ppTestReports, allReportData); - - TestReport[] fTestReports = - allReport.getFailedTestReports(); - addFilePasses(fTestReports, allReportData); - //return all converters report AllConvsReport allConvReport = @@ -196,6 +176,26 @@ addFilePasses(trs, convReportData); } + //return all tests report + + AllTestsReport allReport = allGen.getAllTestsReport(); + File allReportFile = allReport.getAllTestsReport(); + Data allReportData = createReportData(allReportFile, + allReport.getName() , null); + addReturn(allReportData); + + TestReport[] sTestReports = + allReport.getSuccessfulTestReports(); + addFilePasses(sTestReports, allReportData); + + TestReport[] ppTestReports = + allReport.getPartialSuccessTestReports(); + addFilePasses(ppTestReports, allReportData); + + TestReport[] fTestReports = + allReport.getFailedTestReports(); + addFilePasses(fTestReports, allReportData); + //return all errors report AllErrorReport allErrorReport = @@ -205,6 +205,7 @@ allErrorReport.getName(), null); addReturn(allErrReport); + //return annotated graph report File graphReportFile = graphGen.getGraphReport(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |