algorithms/sorting/sort_test.go

10 lines
106 B
Go
Raw Normal View History

2021-12-06 08:01:25 +02:00
package sorting
import (
"testing"
)
func TestSelection(t *testing.T) {
CheckSorter(NewSelection())
}