Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiRemoveFilePartial::testApiRemoveFile_RemovesNode_WhenNodeIsFile PHP Метод

testApiRemoveFile_RemovesNode_WhenNodeIsFile() публичный Метод

    public function testApiRemoveFile_RemovesNode_WhenNodeIsFile()
    {
        $test = $this->getTest();
        $fs = $this->createFilesystem();
        $p = $this->getPrefixed('FILE_A');
        $test->assertTrue($fs->exists($p));
        $fs->removeFile($p);
        $test->assertFalse($fs->exists($p));
    }