Kraken\_Unit\Filesystem\FilesystemManagerTest::testApiIsFile_ThrowsException_WhenFsDoesNotExist PHP Метод

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

public testApiIsFile_ThrowsException_WhenFsDoesNotExist ( Kraken\Filesystem\FilesystemManagerInterface $man, Prophecy\Prophecy\ObjectProphecy $p1, Prophecy\Prophecy\ObjectProphecy $p2 )
$man Kraken\Filesystem\FilesystemManagerInterface
$p1 Prophecy\Prophecy\ObjectProphecy
$p2 Prophecy\Prophecy\ObjectProphecy
    public function testApiIsFile_ThrowsException_WhenFsDoesNotExist(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $this->setExpectedException(ReadException::class);
        $man->isFile('not_fs://path');
    }
FilesystemManagerTest