test group

This commit is contained in:
Gordon 2022-07-05 16:33:05 +08:00
parent b0669b7eea
commit 04b7dd719c

View File

@ -119,3 +119,9 @@ func Test_GetAccountCode(t *testing.T) {
assert.Nil(t, err) assert.Nil(t, err)
fmt.Println(code) fmt.Println(code)
} }
func Test_GetGroupMemberList(t *testing.T) {
groupID := "3791742301"
list, err := DB.GetGroupMemberIDListFromCache(groupID)
assert.Nil(t, err)
fmt.Println(list)
}