Compares several JUnit reports and creates a comparison table. Curently quite simple, more to be done.
java -jar JUnitDiff.jar ( dir | TEST-foo.xml | report-paths-list.txt )+
./transformToHTML.sh AGG-TEST.xml
A table like this:
Test name | report 1 | report 2 | report 3 | report 4 |
---|---|---|---|---|
Known issues org.jboss.qa.Test1 | OK | FAIL | OK | OK |
Known issues org.jboss.qa.Test2 | FAIL | OK | OK | |
Known issues org.jboss.qa.Test3 | OK | FAIL | OK | OK |
Known issues org.jboss.qa.Test4 | FAIL | FAIL | OK |
Also, the FAILed tests will link to the most probable known issue causing the failure.
See https://svn.devel.redhat.com/…ls/JUnitDiff (Red Hat internals only, soon to be released).
This is rather for continuous build & integration. I need to grab a few .xml files and have a result, in one step.