Пример #1
0
        public void ConvertPathToUrl()
        {
            string baseUrl   = "http://sourcecontrol/svn/Gis/Development/";
            string workspace = @"C:\Users\tkoehler\Desktop\workspace";
            string expected  = "http://sourcecontrol/svn/Gis/Development/this/is/a/test";

            string actual = PathConverter.ConvertPathToUrl(@"C:\Users\tkoehler\Desktop\workspace\this\is\a\test", baseUrl, workspace);

            Assert.AreEqual(expected, actual);
        }