Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiIsDirPartial::testApiIsDir_ThrowsException_WhenItDoesNotExist PHP Method

testApiIsDir_ThrowsException_WhenItDoesNotExist() public method

    public function testApiIsDir_ThrowsException_WhenItDoesNotExist()
    {
        $test = $this->getTest();
        $test->setExpectedException(ReadException::class);
        $fs = $this->createFilesystem();
        $fs->isDir($this->getPrefixed('NULL'));
    }