Пример #1
0
        public void DeleteComplaintNotifyUrlAsyncTest()
        {
            // 此处输入notify_url
            var complaintApis = new ComplaintApis();
            var result        = complaintApis.DeleteComplaintNotifyUrlAsync().GetAwaiter().GetResult();

            // TODO: 此处唯一使用了DELETE动词 需要重点测试
            Console.WriteLine("微信支付 V3 删除投诉通知回调地址接口测试结果:" + result.ToJson(true));

            Assert.IsNotNull(result);
            Assert.IsTrue(result.ResultCode.Success);
            Assert.IsTrue(result.VerifySignSuccess == true);//通过验证
        }