(b *testing.B)
| 318 | } |
| 319 | |
| 320 | func BenchmarkComb(b *testing.B) { |
| 321 | benchmarkFramework(b, sort.Comb[int]) |
| 322 | } |
| 323 | |
| 324 | func BenchmarkPancakeSort(b *testing.B) { |
| 325 | benchmarkFramework(b, sort.Pancake[int]) |
nothing calls this directly
no test coverage detected