支付模块
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

boc_pay_test.go 327 B

12345678910111213
  1. package test
  2. import (
  3. zhios_pay_utils "code.fnuoos.com/go_rely_warehouse/zyos_go_pay.git/utils"
  4. "fmt"
  5. "testing"
  6. )
  7. func TestJoinStringsInASCII(t *testing.T) {
  8. ascii := zhios_pay_utils.JoinStringsInASCII(map[string]string{"apam": "value1", "cpam": "value2", "Bpam": "value3"},
  9. "", "", false, false)
  10. fmt.Println(ascii)
  11. }