1
0
mirror of https://github.com/google/gops.git synced 2025-02-19 19:59:55 +02:00
gops/goprocess/gp_test.go
2018-03-10 21:24:15 -08:00

10 lines
127 B
Go

package goprocess
import "testing"
func BenchmarkFindAll(b *testing.B) {
for ii := 0; ii < b.N; ii++ {
_ = FindAll()
}
}