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

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

public testApiEraseDir_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 testApiEraseDir_ThrowsException_WhenFsDoesNotExist(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $this->setExpectedException(WriteException::class);
        $man->eraseDir('not_fs://path');
    }
FilesystemManagerTest