At the top of my&nbsp; test suite I have the following infrastructre code<br><br>require &#39;watir&#39;<br>require &#39;ci/reporter/rake/test_unit_loader&#39;<br>require &#39;test/unit/ui/console/testrunner&#39;<br>include Test::Unit::UI::Console
<br>require &#39;tc_x_series&#39;<br>require &#39;tc_y_series&#39;<br><br>and then I overwrite the default suite because I run my TestCases sequentially<br>I maintain the order in the array<br>[TC_x1,TC_x2, TC_y1].each {|testcase| 
TestRunner.run(testcase)}<br><br>Each test produces an xml report, one file per TC_ in test/reports/ folder.<br><br>Questions: <br>How do you guys read the reports, do you have some custom formatters to translate into HTML? I am new to ci_reporter and we don&#39;t run CI here. I just want to hook up some presentation layer to reports generated by ci. Can I specify some formatter options to ci_reporter at run time about where to put the report files rather than the default place?
<br>How do you consolidate the reports into one summary file?<br>Any ideas would be helpful . <br>Thanks. <br>marekj<br><br><br>