DotNetCore.SKIT.FlurlHttpCl.../test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestClients.cs

19 lines
578 B
C#
Raw Normal View History

2022-01-20 23:20:03 +08:00
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
{
class TestClients
{
static TestClients()
{
Instance = new WechatTenpayClient(new WechatTenpayClientOptions()
{
MerchantId = TestConfigs.WechatMerchantId,
2022-01-25 13:24:49 +08:00
MerchantSecret = TestConfigs.WechatMerchantSecret,
MerchantCertificateBytes = TestConfigs.WechatMerchantCertificateBytes,
2022-01-25 13:24:49 +08:00
AppId = TestConfigs.WechatAppId
2022-01-20 23:20:03 +08:00
});
}
public static readonly WechatTenpayClient Instance;
}
}