Files
go-junit-report/tests/14-report.xml
Joël Stemmer 2a5fd0eeb0 Include failing packages without tests in report
If a package compiles correctly, but panics before it has a chance to
run any tests it would previously be ignored. Any failing packages
without tests but with some output will now be included in the report
with a dummy test.

Fixes #52
2017-04-27 23:21:54 +01:00

20 lines
702 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite tests="1" failures="1" time="0.003" name="package/panic">
<properties>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="panic" name="Failure" time="0.000">
<failure message="Failed" type="">panic: init&#xA;stacktrace</failure>
</testcase>
</testsuite>
<testsuite tests="1" failures="1" time="0.003" name="package/panic2">
<properties>
<property name="go.version" value="1.0"></property>
</properties>
<testcase classname="panic2" name="Failure" time="0.000">
<failure message="Failed" type="">panic: init&#xA;stacktrace</failure>
</testcase>
</testsuite>
</testsuites>