You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KopSoftWms/test/XUnitTestKopSoftWms/HttpClientTest.cs

15 lines
294 B

using Xunit;
using YL.Utils.Http;
namespace XUnitTestKopSoftWms
{
public class HttpClientTest
{
[Fact]
public void TestMethod1()
{
var str = HttpClientUtil.HttpGet("http://www.baidu.com", null);
Assert.NotNull(str);
}
}
}