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

Mainly: * Moving the averaging/merging of benchmarks from the parser to the formatter package * Tightening up the regex so it only captures the numeric values (no more of trimming spaces and the ns/op) * Deleting the writing up in xml file the benchmark memory sections of B/op and Allocs/op Also added a test case for parseNanoseconds().
11 lines
418 B
XML
11 lines
418 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites>
|
|
<testsuite tests="2" failures="0" time="9.415" name="package/one">
|
|
<properties>
|
|
<property name="go.version" value="1.0"></property>
|
|
</properties>
|
|
<testcase classname="one" name="BenchmarkIpsHistoryInsert" time="0.000052568"></testcase>
|
|
<testcase classname="one" name="BenchmarkIpsHistoryLookup" time="0.000015208"></testcase>
|
|
</testsuite>
|
|
</testsuites>
|