This commit is contained in:
邹宗楠
2025-07-04 10:03:17 +08:00
parent e57de856e7
commit 0b11cd2ec6
6 changed files with 69 additions and 14 deletions

View File

@@ -10,6 +10,7 @@ import (
"encoding/json"
"encoding/pem"
"fmt"
"git.rosy.net.cn/baseapi/utils"
"git.rosy.net.cn/jx-callback/globals"
"testing"
)
@@ -64,3 +65,9 @@ func TestPayStatusQuery(t *testing.T) {
TradeNo: "",
})
}
func TestCardBin(t *testing.T) {
result, err := api.QueryCarBin(GetOrderNumber(8), "1", "4275711234554321")
globals.SugarLogger.Debugf("result := %s", utils.Format4Output(result, false))
globals.SugarLogger.Debugf("result := %v", err)
}