(b *testing.B)
| 56 | } |
| 57 | |
| 58 | func BenchmarkBatch100x1000(b *testing.B) { |
| 59 | benchmarkBatch(b, 100, 1000) |
| 60 | } |
| 61 | |
| 62 | func benchmarkBatch(b *testing.B, numInstances, numKeys int) { |
| 63 | seed := time.Now().UnixNano() |
nothing calls this directly
no test coverage detected