eZ\Publish\Core\Repository\Tests\Service\Integration\ContentBase::testLoadContentInfoByRemoteId PHP Метод

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

Test for the loadContentInfoByRemoteId() method.
public testLoadContentInfoByRemoteId ( ) : eZ\Publish\API\Repository\Values\Content\ContentInfo
Результат eZ\Publish\API\Repository\Values\Content\ContentInfo
    public function testLoadContentInfoByRemoteId()
    {
        /* BEGIN: Use Case */
        $contentService = $this->repository->getContentService();
        $contentInfo = $contentService->loadContentInfoByRemoteId('f5c88a2209584891056f987fd965b0ba');
        /* END: Use Case */
        $this->assertInstanceOf('eZ\\Publish\\API\\Repository\\Values\\Content\\ContentInfo', $contentInfo);
        return $contentInfo;
    }
ContentBase