本文整理汇总了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();
}