14 lines
210 B
Go
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))
|
|
}
|