BEGIN TESTS
(t *testing.T)
| 78 | |
| 79 | // BEGIN TESTS |
| 80 | func TestBinaryInsertion(t *testing.T) { |
| 81 | testFramework(t, sort.BinaryInsertion[int]) |
| 82 | } |
| 83 | |
| 84 | func TestBubble(t *testing.T) { |
| 85 | testFramework(t, sort.Bubble[int]) |
nothing calls this directly
no test coverage detected