48 lines
874 B
Go
48 lines
874 B
Go
package jdshopapi
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
)
|
|
|
|
func TestEnGet(t *testing.T) {
|
|
err := api.OrderShipment(1, "logiCoprId", "logiNo")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
// t.Log(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestGetDeliveryCompany(t *testing.T) {
|
|
result, err := api.GetDeliveryCompany()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestGetOrder(t *testing.T) {
|
|
// err := api.GetOrder(120146365818)
|
|
// if err != nil {
|
|
// t.Fatal(err)
|
|
// }
|
|
// t.Log(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestVoucherInfoGet(t *testing.T) {
|
|
result, err := api.VoucherInfoGet()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|
|
|
|
func TestKeyGet(t *testing.T) {
|
|
result, err := api.KeyGet()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|