9 lines
106 B
Go
9 lines
106 B
Go
package sorting
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestSelection(t *testing.T) {
|
|
CheckSorter(NewSelection())
|
|
}
|