This commit is contained in:
suyl
2021-06-07 10:48:26 +08:00
parent b977fc280c
commit 9b2f23434c
3 changed files with 25 additions and 1 deletions

View File

@@ -43,3 +43,11 @@ func TestGetStoreInfo(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestGetStoreInfoByID(t *testing.T) {
result, err := api.GetStoreInfoByID(800002)
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}