This commit is contained in:
suyl
2021-08-06 09:38:08 +08:00
parent 879f966bf9
commit 1dcdd12ac1
2 changed files with 23 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ package mtpsapi
import (
"strings"
"testing"
"time"
"git.rosy.net.cn/baseapi"
@@ -126,3 +127,11 @@ func TestPreCreateByShop(t *testing.T) {
}
//sugarLogger.Debug(result)
}
func TestCheckOrder(t *testing.T) {
result, err := api.CheckOrder("668202", "绍兴市柯桥区安昌镇西扆村濮家农贸市场", 120512730, 30129535, time.Now().Unix())
if err != nil {
t.Fatal(err)
}
sugarLogger.Debug(result)
}