public void ChangesScheme()
        {
            var builder = new HttpUrlBuilder("http://host1:1337/path");

            builder.WithScheme("https");

            Assert.Equal("https://host1:1337/path", builder.ToString());
        }