Esempio n. 1
0
        public void InsertFrontPath_ShouldHandleTwoPathsWithSlash()
        {
            var builder = new UrlParts(serverUtil);

            builder.AppendPath("/something");

            builder.InsertFrontPath("http://something/else/");

            Assert.AreEqual("http://something/else/something", builder.BuildPath());
        }