當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。