(b *testing.B)
| 252 | } |
| 253 | |
| 254 | func BenchmarkBogo(b *testing.B) { |
| 255 | b.Skip("Skipping benchmark for Bogo Sort, as it uses a lot of resource.") |
| 256 | benchmarkFramework(b, sort.Bogo[int]) |
| 257 | } |
| 258 | |
| 259 | func BenchmarkBucketSort(b *testing.B) { |
| 260 | benchmarkFramework(b, sort.Bucket[int]) |
nothing calls this directly
no test coverage detected