(b *testing.B)
| 9 | func Benchmark5Workers(b *testing.B) { benchmarkWorkers(5, b) } |
| 10 | func Benchmark10Workers(b *testing.B) { benchmarkWorkers(10, b) } |
| 11 | func Benchmark20Workers(b *testing.B) { benchmarkWorkers(20, b) } |
| 12 | |
| 13 | func benchmarkWorkers(i int, b *testing.B) { |
| 14 | for n := 0; n < b.N; n++ { |
nothing calls this directly
no test coverage detected