user_auth_test.go 254 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package domain import "testing" func TestGenerateToken(t *testing.T) { ut := UserAuth{ CompanyId: 526, UserId: 3330346066045952, Phone: "15980201153", PlatformId: 29, AdminType: 1, } tk, _ := ut.CreateAccessToken() t.Log(tk) }