Files
baseapi/platformapi/mtwmapi/act_page_test.go
苏尹岚 9c34435ca4 aa
2021-03-29 15:29:07 +08:00

16 lines
238 B
Go

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))
}