How would I produce JUnit test report for groovy tests, suitable for consumption by Jenkins/Hudson?
问题 I've written several XMLUnit tests (that fit in to the JUnit framework) in groovy and can execute them easily on the command line as per the groovy doco but I don't quite understand what else I've got to do for it to produce the xml output that is needed by Jenkins/Hudson (or other) to display the pass/fail results (like this) and detailed report of the errors etc (like this). (apologies to image owners) Currently, my kickoff script is this: def allSuite = new TestSuite('The XSL Tests') /