I have Hudson as continuous integration server and I want to use option 'Publish JUnit test result report'. But I don't use xUnit tools for testing, instead of that i have shell scripts which run tests and return results in simple format. I thinking to make script which transforms these results to JUnit format. So i'm interesting how JUnit file must looks?
|
|
I did a similar thing a few months ago, and it turned out this simple format was enough for Hudson to accept it as a test protocol:
This question has answers with more details: Spec. for JUnit XML Output |
|||||||||||
|
|
I just grabbed the junit-4.xsd that others have linked to and used a tool named XMLSpear to convert the schema to a blank XML file with these options. This was the result:
|
|||||||
|
|
The top answer of the question Anders Lindahl refers to an xsd file. Personally I found this xsd file also very useful (I don't remember how I found that one). It looks a bit less intimidating, and as far as I used it, all the elements and attributes seem to be recognized by Jenkins (v1.451) One thing though: when adding multiple |
|||
|
|