和测试文件一样.
- 命令依然是xxx_test.go
- package main也可以有自己的test
- 测试的函数名以Benchmark开头. 传入的参数是b *testing.B 测试内容主要是计时??
b.StopTimer(); b.StartTimer(); …. ; b.StopTimer()
在实际使用中(所参考的例子)命名可以为
Benchmark_Publish_Basic Benchmark_Publish_GoClient
测试
go test ./… -v -bench=Benchmark_Publish -benchmem
./… 当前目录以及以下的全部子目录
-bench=Benchmark_Publish 以这个名字开头的测试函数??
go test -h
-benchmem
print memory allocation statistics for benchmarks.
-bench regexp
Run only those benchmarks matching a regular expression. By default, no benchmarks are run. To run all benchmarks, use ‘-bench .’ or ‘-bench=.’.