mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-09-20 10:38:10 +08:00
feat(tenpayv2): 新增部分接口
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Xunit;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
||||
{
|
||||
public class TestCase_ApiExecuteExecutePayTransactionsTests
|
||||
{
|
||||
[Fact(DisplayName = "测试用例:调用 API [POST] /pay/micropay")]
|
||||
public async Task TestCase_ApiExecuteExecutePayTests()
|
||||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user