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,
|
2022-01-25 13:44:22 +08:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|