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.
go-library/service/wechatoffice/getcallbackip_test.go

14 lines
254 B

package wechatoffice
import (
"testing"
)
func TestApp_GetCallBackIp(t *testing.T) {
t.Log(app)
result := app.GetCallBackIp()
t.Logf("Response%s", result.GetCallBackIpResponse)
t.Logf("Err%s", result.Err)
t.Logf("Byte%v", result.Byte)
}