(b *testing.B)
| 281 | } |
| 282 | |
| 283 | func BenchmarkMergeParallel(b *testing.B) { |
| 284 | benchmarkFramework(b, sort.ParallelMerge[int]) |
| 285 | } |
| 286 | |
| 287 | func BenchmarkHeap(b *testing.B) { |
| 288 | benchmarkFramework(b, sort.HeapSort[int]) |
nothing calls this directly
no test coverage detected