本文整理匯總了PHP中Mockery::ducktype方法的典型用法代碼示例。如果您正苦於以下問題:PHP Mockery::ducktype方法的具體用法?PHP Mockery::ducktype怎麽用?PHP Mockery::ducktype使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Mockery
的用法示例。
在下文中一共展示了Mockery::ducktype方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: onSetup
public function onSetup()
{
$this->_mockLogger = $this->mock(tubepress_api_log_LoggerInterface::_);
$this->_mockManifestFinder = $this->mock('tubepress_internal_boot_helper_uncached_contrib_ManifestFinder');
$this->_mockCompiler = $this->mock('tubepress_internal_boot_helper_uncached_Compiler');
$this->_mockContainerBuilder = $this->mock('tubepress_internal_ioc_ContainerBuilder');
$this->_mockContainerDumper = $this->mock('Symfony\\Component\\DependencyInjection\\Dumper\\DumperInterface');
$this->_mockBootSettings = $this->mock('tubepress_internal_boot_BootSettings');
$this->_mockAddonFactory = $this->mock('tubepress_internal_boot_helper_uncached_contrib_AddonFactory');
$this->_mockLogger->shouldReceive('isEnabled')->once()->andReturn(true);
$this->_mockLogger->shouldReceive('debug')->atLeast(1);
$this->_sut = new tubepress_internal_boot_helper_uncached_UncachedContainerSupplier($this->_mockLogger, $this->_mockManifestFinder, $this->_mockAddonFactory, $this->_mockCompiler, $this->_mockBootSettings);
$this->_sut->__setContainerBuilder($this->_mockContainerBuilder);
$this->_sut->__setContainerDumper($this->_mockContainerDumper);
$this->_sut->__setSerializer(array($this, '__callbackSerialize'));
Mockery::ducktype();
}
示例2: testDucktypeConstraintThrowsExceptionWhenConstraintUnmatched
/**
* @expectedException \Mockery\Exception
*/
public function testDucktypeConstraintThrowsExceptionWhenConstraintUnmatched()
{
$this->mock->shouldReceive('foo')->with(Mockery::ducktype('quack', 'swim'))->once();
$this->mock->foo(new Mockery_Duck_Nonswimmer());
$this->container->mockery_verify();
}