mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="3" errors="1">
|
|
<testsuite name="package/name/main/ack" tests="1" failures="0" errors="0" id="0" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="TestAck" classname="package/name/main/ack" time="0.000">
|
|
<system-out><![CDATA[ ack_test.go:13: ack]]></system-out>
|
|
</testcase>
|
|
</testsuite>
|
|
<testsuite name="package/name/main/ok" tests="1" failures="0" errors="0" id="1" hostname="hostname" time="0.000" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="TestOk" classname="package/name/main/ok" time="0.000">
|
|
<system-out><![CDATA[ ok_test.go:13: ok]]></system-out>
|
|
</testcase>
|
|
</testsuite>
|
|
<testsuite name="package/name/main/fail" tests="1" failures="0" errors="1" id="2" hostname="hostname" time="0.001" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="Failure" classname="package/name/main/fail" time="0.000">
|
|
<error message="Runtime error"><![CDATA[TestMain failed, returning early]]></error>
|
|
</testcase>
|
|
</testsuite>
|
|
</testsuites>
|