(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestBogo(t *testing.T) { |
| 89 | t.Skip("Skipping test for Bogo Sort, as it uses a lot of resource.") |
| 90 | testFramework(t, sort.Bogo[int]) |
| 91 | } |
| 92 | |
| 93 | func TestBucketSort(t *testing.T) { |
| 94 | testFramework(t, sort.Bucket[int]) |
nothing calls this directly
no test coverage detected