package helper import "testing" func TestToChinese(t *testing.T) { arg := "sub_msg" got := ToChinese(arg) t.Log(got) } func TestAccountType(t *testing.T) { arg := "3122222222" got := IsValidQQ(arg) t.Log(got) }