This commit is contained in:
苏尹岚
2021-03-29 15:29:07 +08:00
parent 5d06658b5f
commit 9c34435ca4
4 changed files with 121 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
package mtwmapi
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestGetCenterList(t *testing.T) {
result, err := api.GetCenterList("7634034")
if err != nil {
t.Fatal(err)
}
t.Log(utils.Format4Output(result, false))
}