This commit is contained in:
苏尹岚
2020-12-25 10:44:02 +08:00
parent fffd5d34c7
commit 573fe54dee
2 changed files with 66 additions and 12 deletions

View File

@@ -27,3 +27,11 @@ func TestGetWaybillDetailInfo(t *testing.T) {
}
t.Log(utils.Format4Output(result, false))
}
func TestAddressDistinguish(t *testing.T) {
result, err := api.AddressDistinguish("班")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}