Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiIsFilePartial::testApiIsFile_ThrowsException_WhenItDoesNotExist PHP Метод

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

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