(b *testing.B)
| 257 | } |
| 258 | |
| 259 | func BenchmarkBucketSort(b *testing.B) { |
| 260 | benchmarkFramework(b, sort.Bucket[int]) |
| 261 | } |
| 262 | |
| 263 | func BenchmarkCocktailSort(b *testing.B) { |
| 264 | benchmarkFramework(b, sort.Cocktail[int]) |
nothing calls this directly
no test coverage detected