mirror of
https://github.com/google/gops.git
synced 2025-02-19 19:59:55 +02:00
10 lines
127 B
Go
10 lines
127 B
Go
package goprocess
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkFindAll(b *testing.B) {
|
|
for ii := 0; ii < b.N; ii++ {
|
|
_ = FindAll()
|
|
}
|
|
}
|