27 lines
482 B
Go
27 lines
482 B
Go
package pay
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestClient_GetUserInfo(t *testing.T) {
|
|
|
|
//c, err := NewClient()
|
|
//if err != nil {
|
|
// t.Error(err)
|
|
//}
|
|
//
|
|
//req := CreateComplaintNotifyUrlRequest()
|
|
//
|
|
//req.MchId = "3503"
|
|
//req.NotifyUrl = "https://pay.uu89.com/api/complaint/wxNotify/3503"
|
|
//req.Type = 1
|
|
//
|
|
//resp, err := c.ComplaintNotifyUrl(req)
|
|
//if err != nil {
|
|
// log.Fatalln(err)
|
|
//}
|
|
//fmt.Println(resp.GetHttpContentString())
|
|
//fmt.Println(resp.GetHttpHeaders())
|
|
}
|