示例#1
0
 public void FullNameCaseAreKept(string given, string expected)
 {
     Assert.AreEqual(expected, FileInfoComparer.FullName(new FileInfo(given)));
 }
示例#2
0
 public void FullNameIsProperlyChanged(string lhs, string rhs)
 {
     Assert.AreEqual(
         FileInfoComparer.FullName(new FileInfo(lhs)), rhs);
 }
示例#3
0
 public void FulleNameCannotBeNull()
 {
     Assert.Throws <ArgumentNullException>(() => FileInfoComparer.FullName(null));
 }