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

testApiWrite_ThrowsException_WhenFsDoesNotExist() public method

public testApiWrite_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 testApiWrite_ThrowsException_WhenFsDoesNotExist(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $this->setExpectedException(WriteException::class);
        $contents = '';
        $man->write('not_fs://path', $contents);
    }
FilesystemManagerTest