vote up 3 vote down star
3

Where can I find the specification of JUnit's XML output. My goal is to write a UnitTest++ XML reporter which produced JUnit like output.

See: "Unable to get hudson to parse JUnit test output XML" and "http://stackoverflow.com/questions/411218/hudson-c-and-unittest"

flag

63% accept rate
Could you provide some more information, which output do you mean? Probably an example or instruction how to get such an ouput? Thanks! – furtelwart Jan 16 at 6:59
Is it for JUnit 4.x? Which TestRunner do you use? – furtelwart May 6 at 7:55

3 Answers

vote up 2 vote down

I found some informal spec at http://www.nabble.com/schema-for-junit-xml-output-td22193385.html

link|flag
vote up 0 vote down

I can only give you an general information.

In the sourcecode of JUnit, you will find your information. If you provide some more information, I can help you further. My personal hint for finding your specification would be junit.framework.TestResult.

Good luck!

link|flag
vote up 0 vote down

The xml output is not generated by JUnit (at least, not the junit.jar), but by the junit ant task.
The relevant class is org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.