我已经看到Go中有一个结构testing.BenchmarkResult
来访问基准测试结果,但我发现很少的文档或示例可以帮助我使用它。
到目前为止,我只是像这样对我的函数进行基准测试:
func BenchmarkMyFunction(b *testing.B) {
// call to myFunction
}
然后运行:
go test -bench=".*"
在这里,结果将打印到控制台,但我想将它们存储在单独的文件中。如何使用BenchmarkResult
类型执行此操作?
例如:
package main
import (
"fmt"
"testing"
"time"
)
func Add(a, b int) int {
time.Sleep(10 * time.Microsecond) // Just to make the test take some time
return a + b
}
func BenchAdd(b *testing.B) {
for i := 0; i < b.N; i++ {
_ = Add(1, 2)
}
}
func main() {
res := testing.Benchmark(BenchAdd)
fmt.Printf("%sn%#[1]vn", res)
}
生产:
120000 10000 ns/op
testing.BenchmarkResult{N:120000, T:1200000000, Bytes:0, MemAllocs:0x0, MemBytes:0x0, Extra:map[string]float64{}}
操场。
您可以使用 ioutil.WriteFile
轻松地将这些结果写出到文件中。带写文件的游乐场。