Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiRemoveDirPartial::testApiRemoveDir_ThrowsException_WhenNodeDoesNotExist PHP Method

testApiRemoveDir_ThrowsException_WhenNodeDoesNotExist() public method

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