(b *testing.B)
| 277 | } |
| 278 | |
| 279 | func BenchmarkMergeIter(b *testing.B) { |
| 280 | benchmarkFramework(b, sort.MergeIter[int]) |
| 281 | } |
| 282 | |
| 283 | func BenchmarkMergeParallel(b *testing.B) { |
| 284 | benchmarkFramework(b, sort.ParallelMerge[int]) |
nothing calls this directly
no test coverage detected