algorithms/sorting/sort_test.go
2021-12-06 08:01:25 +02:00

9 lines
106 B
Go

package sorting
import (
"testing"
)
func TestSelection(t *testing.T) {
CheckSorter(NewSelection())
}