(b *testing.B)
| 289 | } |
| 290 | |
| 291 | func BenchmarkCount(b *testing.B) { |
| 292 | benchmarkFramework(b, sort.Count[int]) |
| 293 | } |
| 294 | |
| 295 | func BenchmarkQuick(b *testing.B) { |
| 296 | benchmarkFramework(b, sort.Quicksort[int]) |
nothing calls this directly
no test coverage detected