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

17 lines
416 B
C#
Raw Normal View History

2022-01-21 17:06:31 +08:00
namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests
2021-05-10 15:30:00 +08:00
{
2022-01-21 17:06:31 +08:00
internal class TestClients
2021-05-10 15:30:00 +08:00
{
static TestClients()
{
2021-07-30 18:25:12 +08:00
Instance = new WechatApiClient(new WechatApiClientOptions()
2022-01-21 17:06:31 +08:00
{
2021-07-30 18:25:12 +08:00
AppId = TestConfigs.WechatAppId,
2022-01-21 17:06:31 +08:00
AppSecret = TestConfigs.WechatAppSecret
2021-07-30 18:25:12 +08:00
});
2021-05-10 15:30:00 +08:00
}
public static readonly WechatApiClient Instance;
}
}