1
0
Fork 0
grus/lexical/sort_test.go

20 lines
325 B
Go

package lexical
import "testing"
// TestSort tests the Sort func.
func TestSort(t *testing.T) {
words := make(map[string]string)
words["dcba"] = "abcd"
words["zyx"] = "xyz"
for word, sorted := range words {
s := Sort(word)
if s != sorted {
t.Errorf("Sort func failed, got %s, want %s",
s, sorted)
}
}
}