payment gateway for rpn cn
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
226B

  1. package main
  2. import (
  3. "testing"
  4. )
  5. func TestGetRpnOutByOrderId(t *testing.T) {
  6. order_id := "200310160057TW002184000000000001"
  7. ret, _ := getRpnOutByOrderId(order_id)
  8. if ret.Id != 3 {
  9. t.Error("we expect id to be 3")
  10. }
  11. }