BEGIN BENCHMARKS
(b *testing.B)
| 244 | //BEGIN BENCHMARKS |
| 245 | |
| 246 | func BenchmarkBinaryInsertion(b *testing.B) { |
| 247 | benchmarkFramework(b, sort.BinaryInsertion[int]) |
| 248 | } |
| 249 | |
| 250 | func BenchmarkBubble(b *testing.B) { |
| 251 | benchmarkFramework(b, sort.Bubble[int]) |
nothing calls this directly
no test coverage detected