mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-17 19:37:35 +08:00
17 lines
442 B
C#
17 lines
442 B
C#
![]() |
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
|||
|
{
|
|||
|
class TestClients
|
|||
|
{
|
|||
|
static TestClients()
|
|||
|
{
|
|||
|
Instance = new WechatTenpayClient(new WechatTenpayClientOptions()
|
|||
|
{
|
|||
|
MerchantId = TestConfigs.WechatMerchantId,
|
|||
|
MerchantSecret = TestConfigs.WechatMerchantSecret
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
public static readonly WechatTenpayClient Instance;
|
|||
|
}
|
|||
|
}
|