mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
19 lines
578 B
C#
19 lines
578 B
C#
namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests
|
|
{
|
|
class TestClients
|
|
{
|
|
static TestClients()
|
|
{
|
|
Instance = new WechatTenpayClient(new WechatTenpayClientOptions()
|
|
{
|
|
MerchantId = TestConfigs.WechatMerchantId,
|
|
MerchantSecret = TestConfigs.WechatMerchantSecret,
|
|
MerchantCertificateBytes = TestConfigs.WechatMerchantCertificateBytes,
|
|
AppId = TestConfigs.WechatAppId
|
|
});
|
|
}
|
|
|
|
public static readonly WechatTenpayClient Instance;
|
|
}
|
|
}
|