Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiRemoveFilePartial::testApiRemoveFile_RemovesNode_WhenNodeDoesNotExist PHP 메소드

testApiRemoveFile_RemovesNode_WhenNodeDoesNotExist() 공개 메소드

    public function testApiRemoveFile_RemovesNode_WhenNodeDoesNotExist()
    {
        $test = $this->getTest();
        $fs = $this->createFilesystem();
        $p = $this->getPrefixed('NULL');
        $test->setExpectedException(WriteException::class);
        $test->assertFalse($fs->exists($p));
        $fs->removeFile($p);
    }