-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JUnit XML Reporting #63
Comments
The JUnit XML format is pretty simple, e.g. <?xml version="1.0" encoding="UTF-8" ?>
<testsuites>
<testsuite name="XXX" errors="0" tests="1" failures="0" time="1.986" timestamp="2014-08-22T16:57:55">
<testcase classname="XXX" name="YYY" time="1.986"></testcase>
</testsuite>
</testsuites> Looking at the code, producing a JUnit formatter should be a case of handling the after feature and after scenario events to map those structures to testsuite and testcase elements. I didn't do much digging, but I wasn't sure what data would be passed to those events. If anyone has any hints on where I should look, that would be great. |
This issue should probably be closed as a duplicate of #100. |
Closing in favor of #516 |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Originally filed on cucumber-tck as #14 by @s9tpepper.
The text was updated successfully, but these errors were encountered: