strcase/camel_test.go

42 lines
886 B
Go
Raw Normal View History

2015-10-09 17:13:05 +08:00
package strcase
import (
"testing"
)
func TestToCamel(t *testing.T) {
cases := [][]string{
[]string{ "test_case", "TestCase" },
[]string{ "test", "Test" },
[]string{ "TestCase", "TestCase" },
[]string{ " test case ", "TestCase" },
[]string{ "", "" },
[]string{ "many_many_words", "ManyManyWords" },
[]string{ "AnyKind of_string", "AnyKindOfString" },
2017-06-15 10:32:52 +08:00
[]string{ "odd-fix", "OddFix" },
2017-11-29 08:52:26 +08:00
[]string{ "numbers2And55with000", "Numbers2And55With000" },
2015-10-09 17:13:05 +08:00
}
for _, i := range cases {
in := i[0]
out := i[1]
result := ToCamel(in)
if result != out {
t.Error("'" + result + "' != '" + out + "'")
}
}
}
2017-06-15 10:33:52 +08:00
func TestToLowerCamel(t *testing.T) {
cases := [][]string{
[]string{ "foo-bar", "fooBar" },
}
for _, i := range cases {
in := i[0]
out := i[1]
result := ToLowerCamel(in)
if result != out {
t.Error("'" + result + "' != '" + out + "'")
}
}
}