(b *testing.B)
| 8 | func Benchmark2Workers(b *testing.B) { benchmarkWorkers(2, 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) { |
nothing calls this directly
no test coverage detected