测试代码

This commit is contained in:
苏尹岚
2020-03-09 14:56:46 +08:00
parent 7c849e50f5
commit de0b788303
2 changed files with 23 additions and 11 deletions

View File

@@ -50,3 +50,11 @@ func TestCBGetUserInfo(t *testing.T) {
}
t.Log(utils.Format4Output(userInfo, false))
}
func TestCBGetTicketInfo(t *testing.T) {
userInfo, err := api.CBGetTicketInfo()
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(userInfo, false))
}