Revision: 533 http://cishell.svn.sourceforge.net/cishell/?rev=533&view=rev Author: mwlinnem Date: 2007-09-20 14:16:44 -0700 (Thu, 20 Sep 2007) Log Message: ----------- Untested converters are no longer added as subreports under all convs report (although you can still see which converters weren't tested if you look into the main all convs report). Modified Paths: -------------- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/allconvs/AllConvsReportGenerator.java Modified: trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/allconvs/AllConvsReportGenerator.java =================================================================== --- trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/allconvs/AllConvsReportGenerator.java 2007-09-20 21:15:45 UTC (rev 532) +++ trunk/testing/org.cishell.testing.convertertester.core.new/src/org/cishell/testing/convertertester/core/tester2/reportgen/allconvs/AllConvsReportGenerator.java 2007-09-20 21:16:44 UTC (rev 533) @@ -110,9 +110,6 @@ if (cr.wasTested()) { //add this converters name to all convs report report.println(" " + cr.getShortName()); - - //generate corresponding sub-report - this.convSubGen.generate(cr); } } report.println(""); @@ -124,9 +121,6 @@ if (cr.wasTested()) { //add this converters name to all convs report report.println(" " + cr.getShortName()); - - //generate corresponding sub-report - this.convSubGen.generate(cr); } } @@ -138,16 +132,16 @@ if (! cr.wasTested()) { report.println(" " + cr.getShortName()); - - this.convSubGen.generate(cr); } } report.println(""); for (int ii = 0; ii < convResults.length; ii++) { - this.convSubGen.generate(convResults[ii]); + if (convResults[ii].wasTested()) { + this.convSubGen.generate(convResults[ii]); ConvReport convReport = this.convSubGen.getConvReport(); convReportsList.add(convReport); + } } ConvReport[] convReports = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |