github.com/benz9527/toy-box/algo@v0.0.0-20240221120937-66c0c6bd5abd/sort/select_test.go (about) 1 package sort 2 3 import ( 4 "testing" 5 ) 6 7 func TestBenchmarkSelectSort(t *testing.T) { 8 DataComparator(SelectSort, 1000, 100, 100, true) 9 }