public void Exist_FileExist_ReturnsTrue() { Rofs fs = new Rofs(disk); Assert.IsTrue(fs.Exist("Abc")); Assert.IsTrue(fs.Exist("Def")); }
public void Exist_FileDoesNotExist_ReturnsFalse() { Rofs fs = new Rofs(disk); Assert.IsFalse(fs.Exist("ghi")); }