mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
18 lines
521 B
C#
18 lines
521 B
C#
using System.Threading.Tasks;
|
|
using Xunit;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests
|
|
{
|
|
public class TestCase_ApiExecuteCgibinTests
|
|
{
|
|
[Fact(DisplayName = "测试用例:调用 API [GET] /cgi-bin/gettoken")]
|
|
public async Task TestExecuteCgibinToken()
|
|
{
|
|
var request = new Models.CgibinGetTokenRequest();
|
|
var response = await TestClients.Instance.ExecuteCgibinGetTokenAsync(request);
|
|
|
|
Assert.NotNull(response.AccessToken);
|
|
}
|
|
}
|
|
}
|