This commit is contained in:
苏尹岚
2020-09-11 17:31:07 +08:00
parent 17428c16d7
commit 6b19c53a76
5 changed files with 298 additions and 1 deletions

View File

@@ -112,3 +112,11 @@ func TestParseErr4RetailDiscountDelete(t *testing.T) {
failedList := ParseErr4RetailDiscountDelete(errExt)
t.Log(utils.Format4Output(failedList, false))
}
func TestGetByAppPoiCodeAndType(t *testing.T) {
result, err := api.GetByAppPoiCodeAndType("9375120", 1, 1)
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}