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"); }