Exemplo n.º 1
0
        public static void GetFullPath_Windows_UNC_Valid_LegacyPathSupport(string normalExpected, string legacyExpected, string input)
        {
            string expected = PathFeatures.IsUsingLegacyPathNormalization() ? legacyExpected : normalExpected;

            Assert.Equal(expected, Path.GetFullPath(input));
        }