mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 13:08:07 -05:00
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="5" errors="3">
|
|
<testsuite tests="1" failures="0" time="0.100" name="package/name/passing1" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="passing1" name="TestA" time="0.100"></testcase>
|
|
</testsuite>
|
|
<testsuite tests="1" failures="0" time="0.100" name="package/name/passing2" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="passing2" name="TestB" time="0.100"></testcase>
|
|
</testsuite>
|
|
<testsuite tests="1" failures="1" time="0.000" name="package/name/failing1" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="failing1" name="[build failed]" time="0.000">
|
|
<failure message="Failed" type="">failing1/failing_test.go:15: undefined: x</failure>
|
|
</testcase>
|
|
</testsuite>
|
|
<testsuite tests="1" failures="1" time="0.000" name="package/name/failing2" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="failing2" name="[build failed]" time="0.000">
|
|
<failure message="Failed" type="">failing2/another_failing_test.go:20: undefined: y</failure>
|
|
</testcase>
|
|
</testsuite>
|
|
<testsuite tests="1" failures="1" time="0.000" name="package/name/setupfailing1" hostname="hostname" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="setupfailing1" name="[setup failed]" time="0.000">
|
|
<failure message="Failed" type="">setupfailing1/failing_test.go:4: cannot find package "other/package" in any of:
	/path/vendor (vendor tree)
	/path/go/root (from $GOROOT)
	/path/go/path (from $GOPATH)</failure>
|
|
</testcase>
|
|
</testsuite>
|
|
</testsuites>
|