uiauto icon indicating copy to clipboard operation
uiauto copied to clipboard

Convert trace results to Xunit

Open johandk89 opened this issue 11 years ago • 3 comments

Convert trace results so that Bamboo and Jenkins can read the test results

johandk89 avatar Aug 22 '13 12:08 johandk89

Thanks, I'll keep this in mind as one of the output formats when working on https://github.com/enriquez/uiauto/issues/2

enriquez avatar Aug 22 '13 19:08 enriquez

@johandk89 I'm not familiar with Xunit. Can you point me to any resources on the specifications of the output?

enriquez avatar Sep 09 '13 21:09 enriquez

Xunit/Junit is a format needed to parse test results in Bamboo, jenkins and Hudson. Here is a sample

http://stackoverflow.com/questions/4922867/junit-xml-format-specification-that-hudson-supports

<testsuite tests="3"> <testcase classname="foo" name="ASuccessfulTest"/> <testcase classname="foo" name="AnotherSuccessfulTest"/> <testcase classname="foo" name="AFailingTest"> <failure type="NotEnoughFoo"> details about failure </failure> </testcase> </testsuite>

johandk89 avatar Oct 16 '13 12:10 johandk89