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.
|
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);
|
|
}
|
|
}
|
|
} |