Files
baseapi/platformapi/mtpsapi/shop_page_test.go
2020-05-08 09:40:51 +08:00

30 lines
521 B
Go

package mtpsapi
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestPagePoiUpdate(t *testing.T) {
err := api.PagePoiUpdate("666730", "任学梅", "15283376640", "feng.shi@rosy.net.cn")
if err != nil {
t.Fatal(err)
}
}
func TestGetAccountDetail(t *testing.T) {
err := api.GetAccountDetail()
if err != nil {
t.Fatal(err)
}
}
func TestGetStoreStatus(t *testing.T) {
result, err := api.GetStoreStatus("肖坝路店")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}