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

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

public testApiIsPublic_PassesCallToProperFs_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 testApiIsPublic_PassesCallToProperFs_WhenFsExists(FilesystemManagerInterface $man, ObjectProphecy $p1, ObjectProphecy $p2)
    {
        $expected = new StdClass();
        $this->expect($p1, 'isPublic', ['path'])->willReturn($expected);
        $this->prevent($p2, 'isPublic');
        $this->assertSame($expected, $man->isPublic('fs1://path'));
    }
FilesystemManagerTest