Files
baseapi/platformapi/pddapi/union_test.go
2021-04-26 11:44:44 +08:00

14 lines
210 B
Go

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