Files
baseapi/platformapi/ebaiapi/sku_test.go
gazebo b7ad5004b6 - up.
2018-09-25 18:29:11 +08:00

26 lines
434 B
Go

package ebaiapi
import (
"testing"
"git.rosy.net.cn/baseapi/utils"
)
func TestSkuCategoryList(t *testing.T) {
result, err := api.SkuCategoryList("", 3, 1491490798176)
if err != nil {
t.Fatal(err)
} else {
t.Log(utils.Format4Output(result, false))
}
}
func TestSkuBrandList(t *testing.T) {
result, err := api.SkuBrandList("", 1)
if err != nil {
t.Fatal(err)
} else {
t.Log(utils.Format4Output(result, false))
}
}