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

19 lines
577 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()
2022-05-06 20:29:27 +08:00
{
2022-01-20 23:20:03 +08:00
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;
}
}