ApiRouterTests.DiscoveryTests.WhenRequestingRootThenRootShouldRespond C# (CSharp) Метод

WhenRequestingRootThenRootShouldRespond() приватный Метод

private WhenRequestingRootThenRootShouldRespond ( ) : void
Результат void
        public void WhenRequestingRootThenRootShouldRespond()
        {
            var response = _httpClient.GetAsync("http://localhost/").Result;

            Assert.Equal("RootController", response.Content.ReadAsStringAsync().Result);
        }