public void ArePathEqual(string path1, string path2, bool expectedResult)
 {
     if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
     {
         var result = IOUtilities.ArePathEqual(path1, path2);
         Assert.Equal(expectedResult, result);
     }
 }
Beispiel #2
0
        public void ArePathEqual(string path1, string path2, bool expectedResult)
        {
            var result = IOUtilities.ArePathEqual(path1, path2);

            Assert.AreEqual(expectedResult, result);
        }