From 662d82326c01e3cd89339f38847c835effaceb12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=AD=90=E9=93=AD?= Date: Wed, 22 Jan 2025 18:13:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=92=E4=BB=B6v2=E8=B0=83=E6=95=B4,?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/helper/common_test.go | 6 ++++++ 1 file changed, 6 insertions(+) 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) +}