Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiRemoveDirPartial::testApiRemoveDir_ThrowsException_WhenNodeIsFile PHP Метод

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

    public function testApiRemoveDir_ThrowsException_WhenNodeIsFile()
    {
        $test = $this->getTest();
        $fs = $this->createFilesystem();
        $pc = $this->getPrefixed('FILE_C');
        $test->setExpectedException(WriteException::class);
        $test->assertTrue($fs->exists($pc));
        $fs->removeDir($pc);
    }