Can I use FlurlClient with Asp.Net Core TestServer?
问题 We are using FlurlClient in a few projects and familiar with their fluent interface. We now want to use it in asp.net core integration tests using TestServer. The example from http://asp.net-hacker.rocks/2017/09/27/testing-aspnetcore.html _server = new TestServer(new WebHostBuilder() .UseStartup<Startup>()); _client = _server.CreateClient(); I was going to change code to _server = new TestServer(new WebHostBuilder() .UseStartup<Startup>()); var httpClient = _server.CreateClient(); _client =