jcq消费消息

This commit is contained in:
苏尹岚
2020-07-15 15:18:44 +08:00
parent 584dbe8d79
commit 56995b191b
6 changed files with 242 additions and 18 deletions

View File

@@ -29,3 +29,19 @@ func TestGetOrder(t *testing.T) {
}
// t.Log(utils.Format4Output(result, false))
}
func TestVoucherInfoGet(t *testing.T) {
result, err := api.VoucherInfoGet()
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}
func TestKeyGet(t *testing.T) {
result, err := api.KeyGet()
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}