package ebaiapi import ( "git.rosy.net.cn/baseapi/utils" "testing" ) func TestSkuCategoryList(t *testing.T) { result, err := api.SkuCategoryList("白菜", 1, 0) 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)) } } func TestPictureUpload(t *testing.T) { result, err := api.PictureUpload("https://image.jxc4.com/image/cc7119fbe87cdefc66995cd79321c21c.jpg", nil) if err != nil { t.Fatal(err) } else { t.Log(utils.Format4Output(result, false)) } }