I am creating XML myself that is similar enough to JUnit for Hudson to read them. It works fine, but I can't figure out what a list of packages is in the Hudson web interface. How to make XML that will interpret Hudson as a "package?"
<testsuites>
<testsuite>
<testcase classname="class\name\that\is\really\folders" name="test_name.log" time="231">
</testcase>
</testsuite>
</testsuites>
Hudson will list this as:
Package: (root)
Class: class \ name \ that \ is \ really \ folders
Test name: test_name.log
source
share