At the top of my test suite I have the following infrastructre code<br><br>require 'watir'<br>require 'ci/reporter/rake/test_unit_loader'<br>require 'test/unit/ui/console/testrunner'<br>include Test::Unit::UI::Console
<br>require 'tc_x_series'<br>require 'tc_y_series'<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'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>