当前位置: 首页>>代码示例>>PHP>>正文


PHP Mockery::ducktype方法代码示例

本文整理汇总了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();
 }
开发者ID:tubepress,项目名称:tubepress,代码行数:17,代码来源:UncachedContainerSupplierTest.php

示例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();
 }
开发者ID:carriercomm,项目名称:CraigslistX,代码行数:9,代码来源:ExpectationTest.php


注:本文中的Mockery::ducktype方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。