Example #1
0
 private static void AssertIsSamePath(string first, string second)
 {
     Assert.IsTrue(CommonUtils.IsSamePath(first, second), string.Format("First: {0} Second: {1}", first, second));
     first  = first.Replace("\\", "/");
     second = second.Replace("\\", "/");
     Assert.IsTrue(CommonUtils.IsSamePath(first, second), string.Format("First: {0} Second: {1}", first, second));
 }