How can I generate an HTML test result file from my JUnit generated test-result.xml file?
Use the junitreport Ant task (http://ant.apache.org/manual/OptionalTasks/junitreport.html) to gather several test result .xml files into a single test result .html report. The sample code below gathers all test-result.xml files in various subdirectories, generates a test-summary.xml file with the combined results, then generates a test summary html file from that combined xml file.