1
0
Fork 0
algorithms-go/sort/sleep_sort_test.go

13 lines
149 B
Go

package sort
import (
"testing"
)
func TestSleepSort(t *testing.T) {
testSort(t, SleepSort,
[]int{5, 3, 1, 4, 2},
[]int{1, 2, 3, 4, 5},
)
}