Files
baseapi/platformapi/jdshopapi/order_test.go
2020-06-03 11:18:16 +08:00

14 lines
209 B
Go

package jdshopapi
import (
"testing"
)
func TestEnGet(t *testing.T) {
err := api.OrderShipment(1, "logiCoprId", "logiNo")
if err != nil {
t.Fatal(err)
}
// t.Log(utils.Format4Output(result, false))
}