using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HttpClientStudy.UnitTest { /// /// 基础HttpClient 测试 /// public class NormalHttpClientTest { private readonly ITestOutputHelper _logger; public NormalHttpClientTest(ITestOutputHelper outputHelper) { _logger = outputHelper; } [Fact] public void Test() { } } }