Kraken\_Unit\Filesystem\FilesystemManagerTest::testApiGetSize_ThrowsException_WhenFsDoesNotExist PHP Method

testApiGetSize_ThrowsException_WhenFsDoesNotExist() public method

public testApiGetSize_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 testApiGetSize_ThrowsException_WhenFsDoesNotExist(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $this->setExpectedException(ReadException::class);
        $man->getSize('not_fs://path');
    }
FilesystemManagerTest