diff --git a/utils/helper/common_test.go b/utils/helper/common_test.go index 5c416c1..d5979cc 100644 --- a/utils/helper/common_test.go +++ b/utils/helper/common_test.go @@ -7,3 +7,9 @@ func TestToChinese(t *testing.T) { got := ToChinese(arg) t.Log(got) } + +func TestAccountType(t *testing.T) { + arg := "3122222222" + got := IsValidQQ(arg) + t.Log(got) +}