public void TestSimpleCall()
        {
            PortlessWebClient webClient = new PortlessWebClient(WebHost.Current);
            HtmlPage          page      = (HtmlPage)webClient.GetPage("http://localhost.test/Account/Login");
            string            html      = page.AsText();

            html.Should().Contain("ASP.NET");
        }