- ebai key changed.

This commit is contained in:
gazebo
2018-10-08 08:25:34 +08:00
parent 58b6d6329d
commit 00cbc8f635
4 changed files with 27 additions and 11 deletions

View File

@@ -7,10 +7,24 @@ import (
)
func TestOrderGet(t *testing.T) {
result, err := api.OrderGet("15380342248732")
result, err := api.OrderGet("15381031350154")
if err != nil {
t.Fatal(err)
} else {
t.Log(utils.Format4Output(result, false))
}
}
func TestOrderCallDelivery(t *testing.T) {
err := api.OrderCallDelivery("15381031350154")
if err != nil {
t.Fatal(err)
}
}
func TestOrderSendOut(t *testing.T) {
err := api.OrderSendOut("15381031350154", "")
if err != nil {
t.Fatal(err)
}
}