- jdapi.GetAllCities

This commit is contained in:
gazebo
2019-05-10 17:47:02 +08:00
parent ed0c8f6928
commit 033aacadff
2 changed files with 25 additions and 0 deletions

View File

@@ -13,6 +13,14 @@ const (
mustExistStoreJXID = "100285"
)
func TestGetAllCities(t *testing.T) {
result, err := api.GetAllCities()
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}
func TestGetStationsByVenderId(t *testing.T) {
result, err := api.GetStationsByVenderId()
if err != nil {