This commit is contained in:
邹宗楠
2022-08-11 14:23:06 +08:00
parent 7efcd3a614
commit c845eabe69
32 changed files with 231 additions and 212 deletions

View File

@@ -0,0 +1,15 @@
package dao
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestGetUsers(t *testing.T) {
userList, _, err := GetUsers(GetDB(), 0, "", nil, nil, []string{"18180948107"}, 0, 0)
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(userList, false))
}