本文整理匯總了PHP中Composer\Repository\ArrayRepository::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP ArrayRepository::expects方法的具體用法?PHP ArrayRepository::expects怎麽用?PHP ArrayRepository::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Composer\Repository\ArrayRepository
的用法示例。
在下文中一共展示了ArrayRepository::expects方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testGetPackageVersionsFailed
/**
* @expectedException \RuntimeException
* @expectedExceptionMessage We cannot retrieve information on magento/product-community-edition.
*/
public function testGetPackageVersionsFailed()
{
$communityPackage = $this->getMock('\\Composer\\Package\\Package', [], [], '', false);
$enterprisePackage = $this->getMock('\\Composer\\Package\\Package', [], [], '', false);
$communityPackage->expects($this->once())->method('getName')->willReturn('magento/product-community-edition');
$enterprisePackage->expects($this->once())->method('getName')->willReturn('magento/product-enterprise-edition');
$this->composerInformation->expects($this->any())->method('isSystemPackage')->willReturn(true);
$this->composerInformation->expects($this->once())->method('isPackageInComposerJson')->willReturn(true);
$this->repository->expects($this->once())->method('getPackages')->willReturn([$communityPackage, $enterprisePackage]);
$this->locker->expects($this->once())->method('getLockedRepository')->willReturn($this->repository);
$this->composer->expects($this->once())->method('getLocker')->willReturn($this->locker);
$this->magentoComposerApp->expects($this->once())->method('createComposer')->willReturn($this->composer);
$this->composerAppFactory->expects($this->once())->method('create')->willReturn($this->magentoComposerApp);
$this->composerAppFactory->expects($this->once())->method('createInfoCommand')->willReturn($this->infoCommand);
$this->systemPackage = new SystemPackage($this->composerAppFactory, $this->composerInformation);
$this->infoCommand->expects($this->once())->method('run')->with('magento/product-community-edition')->willReturn(false);
$this->systemPackage->getPackageVersions();
}