mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-08-03 02:39:44 -05:00

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
9 lines
236 B
XML
9 lines
236 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites>
|
|
<testsuite tests="0" failures="0" time="0.001" name="package/empty">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
</testsuite>
|
|
</testsuites>
|