payment gateway for rpn cn
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.

14 satır
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. }