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

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

public testApiExists_PassesCallToProperFilesystem_WhenFsExists ( 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 testApiExists_PassesCallToProperFilesystem_WhenFsExists(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $path = 'path';
        $this->expect($p1, 'exists', [$path]);
        $man->exists('fs1://' . $path);
    }
FilesystemManagerTest