Пример #1
0
        public void QueryNegotiationHistorysAsyncTest()
        {
            // 此处输入投诉id
            var complaint_id = "{complaint_id}";

            var complaintApis = new ComplaintApis();
            var result        = complaintApis.QueryNegotiationHistorysAsync(complaint_id).GetAwaiter().GetResult();

            Console.WriteLine("微信支付 V3 查询投诉协商历史接口测试结果:" + result.ToJson(true));

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