Files
go-junit-report/testdata/03-report.xml
Joël Stemmer 985100c8e8 junit: Move test output within the XML tag for skipped tests
For consistency with failed tests and tests with unknown status.
2022-03-22 22:05:23 +00:00

13 lines
572 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<testsuites tests="2" skipped="1">
<testsuite name="package/name" tests="2" failures="0" errors="0" hostname="hostname" skipped="1" time="0.150" timestamp="2022-01-01T00:00:00Z">
<properties>
<property name="go.version" value="1.0"></property>
</properties>
<testcase name="TestOne" classname="package/name" time="0.020">
<skipped message="Skipped"><![CDATA[file_test.go:11: Skip message]]></skipped>
</testcase>
<testcase name="TestTwo" classname="package/name" time="0.130"></testcase>
</testsuite>
</testsuites>