コード例 #1
0
        public void Exist_FileExist_ReturnsTrue()
        {
            Rofs fs = new Rofs(disk);

            Assert.IsTrue(fs.Exist("Abc"));
            Assert.IsTrue(fs.Exist("Def"));
        }
コード例 #2
0
        public void Exist_FileDoesNotExist_ReturnsFalse()
        {
            Rofs fs = new Rofs(disk);

            Assert.IsFalse(fs.Exist("ghi"));
        }