Files
Api/DouyinApi.Tests/Common_Test/HttpHelper_Should.cs

27 lines
620 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using DouyinApi.Common.Helper;
using Xunit;
namespace DouyinApi.Tests.Common_Test
{
public class HttpHelper_Should
{
[Fact]
public void Get_Async_Test()
{
var responseString = HttpHelper.GetAsync("http://apk.neters.club/api/Blog").Result;
Assert.NotNull(responseString);
}
[Fact]
public void Post_Async_Test()
{
var responseString = HttpHelper.PostAsync("http://apk.neters.club/api/Login/swgLogin", "{\"name\":\"admin\",\"pwd\":\"admin\"}").Result;
Assert.NotNull(responseString);
}
}
}