uiauto
uiauto copied to clipboard
Convert trace results to Xunit
Convert trace results so that Bamboo and Jenkins can read the test results
Thanks, I'll keep this in mind as one of the output formats when working on https://github.com/enriquez/uiauto/issues/2
@johandk89 I'm not familiar with Xunit. Can you point me to any resources on the specifications of the output?
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>