(b *testing.B)
| 28 | |
| 29 | func BenchmarkQuickSort100(b *testing.B) { benchmarkQuickSort(100, b) } |
| 30 | func BenchmarkQuickSort1000(b *testing.B) { benchmarkQuickSort(1000, b) } |
| 31 | func BenchmarkQuickSort10000(b *testing.B) { benchmarkQuickSort(10000, b) } |
| 32 | func BenchmarkQuickSort100000(b *testing.B) { benchmarkQuickSort(100000, b) } |
nothing calls this directly
no test coverage detected