mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-19 18:22:24 +08:00
test: fix typo
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
||||
{
|
||||
public class TestCase_ApiExecutePayTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:调用 API [POST] /pay/micropay")]
|
||||
public async Task TestCase_ApiExecuteExecuteCreatePayMicroPayTests()
|
||||
{
|
||||
var request = new Models.CreatePayMicroPayRequest()
|
||||
{
|
||||
OutTradeNumber = "TEST_OTN_" + DateTimeOffset.Now.ToString("yyyyMMddHHmmssfff"),
|
||||
Body = "TEST_BODY",
|
||||
TotalFee = 1,
|
||||
ClientIp = "127.0.0.7",
|
||||
AuthCode = "TEST_AUTH_CODE"
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCreatePayMicroPayAsync(request);
|
||||
|
||||
Assert.NotNull(response.ReturnCode);
|
||||
Assert.NotNull(response.ReturnMessage);
|
||||
Assert.NotNull(response.TransactionId);
|
||||
}
|
||||
|
||||
[Fact(DisplayName = "测试用例:调用 API [POST] /secapi/pay/refund")]
|
||||
public async Task TestCase_ApiExecuteCreatePayRefundTests()
|
||||
{
|
||||
var request = new Models.CreatePayRefundRequest()
|
||||
{
|
||||
OutTradeNumber = "TSET_OUTTRADENO",
|
||||
OutRefundNumber = "TEST_OTN_" + DateTimeOffset.Now.ToString("yyyyMMddHHmmssfff"),
|
||||
TotalFee = 1,
|
||||
RefundFee = 1,
|
||||
Description = "TEST_DESC"
|
||||
};
|
||||
var response = await TestClients.Instance.ExecuteCreatePayRefundAsync(request);
|
||||
|
||||
Assert.NotNull(response.ReturnCode);
|
||||
Assert.NotNull(response.ReturnMessage);
|
||||
Assert.NotNull(response.RefundId);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user