mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
20 lines
829 B
XML
20 lines
829 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="2" errors="2">
|
|
<testsuite tests="1" failures="1" time="0.003" name="package/panic" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="panic" name="Failure" time="0.000">
|
|
<failure message="Failed" type="">panic: init
stacktrace</failure>
|
|
</testcase>
|
|
</testsuite>
|
|
<testsuite tests="1" failures="1" time="0.003" name="package/panic2" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="panic2" name="Failure" time="0.000">
|
|
<failure message="Failed" type="">panic: init
stacktrace</failure>
|
|
</testcase>
|
|
</testsuite>
|
|
</testsuites>
|