You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
339 B
20 lines
339 B
5 years ago
|
package tools
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestReverse(t *testing.T) {
|
||
|
cases := []struct {
|
||
|
in, want string
|
||
|
}{
|
||
|
{"Hello, world", "dlrow ,olleH"},
|
||
|
{"Hello, 世界", "界世 ,olleH"},
|
||
|
{"", ""},
|
||
|
}
|
||
|
for _, c := range cases {
|
||
|
got := Reverse(c.in)
|
||
|
if got != c.want {
|
||
|
t.Errorf("Reverse(%q) == %q, want %q", c.in, got, c.want)
|
||
|
}
|
||
|
}
|
||
|
}
|