Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiRemoveFilePartial::testApiRemoveFile_RemovesNode_WhenNodeDoesNotExist PHP Method

testApiRemoveFile_RemovesNode_WhenNodeDoesNotExist() public method

    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);
    }