eZ\Publish\Core\IO\Tests\IOMetadataHandler\FlysystemTest::testLoadNotFound PHP Метод

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

public testLoadNotFound ( )
    public function testLoadNotFound()
    {
        $this->filesystem->expects($this->once())->method('getMetadata')->with('prefix/my/file.png')->will($this->throwException(new FileNotFoundException('prefix/my/file.png')));
        $this->handler->load('prefix/my/file.png');
    }