Esempio n. 1
0
        public void AppendParamsPath()
        {
            var builder = new UrlBuilder("http://foo.com/");

            builder.Should().NotBeNull();

            builder.AppendPaths("bar", "baz");
            builder.Path.Should().NotBeEmpty();
            builder.ToString().Should().Be("http://foo.com/bar/baz");
        }