mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00

Benchmark durations were originally formatted with higher precision because they contained just the NsPerOp field. Now that we're approximating the total duration they are more accurate and don't need as many decimals.
14 lines
594 B
XML
14 lines
594 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites tests="2">
|
|
<testsuite name="package/one" tests="2" failures="0" errors="0" id="0" hostname="hostname" time="9.415" timestamp="2022-01-01T00:00:00Z">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase name="BenchmarkIpsHistoryInsert" classname="package/one" time="1.577"></testcase>
|
|
<testcase name="BenchmarkIpsHistoryLookup" classname="package/one" time="1.521"></testcase>
|
|
<system-out><![CDATA[goos: darwin
|
|
goarch: amd64
|
|
pkg: code.internal/state]]></system-out>
|
|
</testsuite>
|
|
</testsuites>
|