(b *testing.B)
| 285 | } |
| 286 | |
| 287 | func BenchmarkHeap(b *testing.B) { |
| 288 | benchmarkFramework(b, sort.HeapSort[int]) |
| 289 | } |
| 290 | |
| 291 | func BenchmarkCount(b *testing.B) { |
| 292 | benchmarkFramework(b, sort.Count[int]) |
nothing calls this directly
no test coverage detected