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