- ebai activity

- Interface2FloatWithDefault to Interface2Float64WithDefault
This commit is contained in:
gazebo
2019-04-02 14:30:13 +08:00
parent c5a44de40c
commit e550a24ce1
4 changed files with 185 additions and 17 deletions

View File

@@ -69,3 +69,14 @@ func TestImageUploadByURL(t *testing.T) {
}
t.Log(result)
}
func TestPoiStatus(t *testing.T) {
err := api.PoiOnline("6741258")
if err != nil {
t.Fatal(err)
}
err = api.PoiOpen("6741258")
if err != nil {
t.Fatal(err)
}
}