(t *testing.T)
| 82 | } |
| 83 | |
| 84 | func TestBubble(t *testing.T) { |
| 85 | testFramework(t, sort.Bubble[int]) |
| 86 | } |
| 87 | |
| 88 | func TestBogo(t *testing.T) { |
| 89 | t.Skip("Skipping test for Bogo Sort, as it uses a lot of resource.") |
nothing calls this directly
no test coverage detected