This commit is contained in:
suyl
2021-04-26 11:44:44 +08:00
parent e8df294631
commit 8a5ef57462
5 changed files with 189 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package pddapi
import (
"testing"
)
func TestGoodsOPidGenerate(t *testing.T) {
err := api.GoodsOPidGenerate("冲天猴儿")
if err != nil {
t.Fatal(err)
}
//t.Log(utils.Format4Output(result, false))
}