當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Stub::makeEmptyExcept方法代碼示例

本文整理匯總了PHP中Codeception\Util\Stub::makeEmptyExcept方法的典型用法代碼示例。如果您正苦於以下問題:PHP Stub::makeEmptyExcept方法的具體用法?PHP Stub::makeEmptyExcept怎麽用?PHP Stub::makeEmptyExcept使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Codeception\Util\Stub的用法示例。


在下文中一共展示了Stub::makeEmptyExcept方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testMethodMatcherWithMakeEmptyExcept

 /**
  * @dataProvider matcherProvider
  */
 public function testMethodMatcherWithMakeEmptyExcept($count, $matcher)
 {
     $dummy = Stub::makeEmptyExcept('DummyClass', 'getCheckMe', array('goodByeWorld' => $matcher), $this);
     $this->repeatCall($count, array($dummy, 'goodByeWorld'));
 }
開發者ID:hitechdk,項目名稱:Codeception,代碼行數:8,代碼來源:StubTest.php

示例2: testMakeEmptyExceptProperyRepalced

 public function testMakeEmptyExceptProperyRepalced()
 {
     $dummy = Stub::makeEmptyExcept('DummyClass', 'getCheckMe', array('checkMe' => 'checked!'));
     $this->assertEquals('checked!', $dummy->getCheckMe());
 }
開發者ID:BatVane,項目名稱:Codeception,代碼行數:5,代碼來源:StubTest.php

示例3: testStubsFromObject

 public function testStubsFromObject()
 {
     $dummy = Stub::make(new \DummyClass());
     $this->assertTrue(isset($dummy->__mocked));
     $dummy = Stub::makeEmpty(new \DummyClass());
     $this->assertTrue(isset($dummy->__mocked));
     $dummy = Stub::makeEmptyExcept(new \DummyClass(), 'helloWorld');
     $this->assertTrue(isset($dummy->__mocked));
     $dummy = Stub::construct(new \DummyClass());
     $this->assertTrue(isset($dummy->__mocked));
     $dummy = Stub::constructEmpty(new \DummyClass());
     $this->assertTrue(isset($dummy->__mocked));
     $dummy = Stub::constructEmptyExcept(new \DummyClass(), 'helloWorld');
     $this->assertTrue(isset($dummy->__mocked));
 }
開發者ID:pfz,項目名稱:codeception,代碼行數:15,代碼來源:StubTest.php

示例4: testFindAll

 public function testFindAll()
 {
     $stub_record = Stub::makeEmptyExcept('Comment', 'findAll', ['findBy' => Stub::once(function () {
         return true;
     })]);
     $stub_record->findAll();
 }
開發者ID:arduanov,項目名稱:simple-record,代碼行數:7,代碼來源:SimpleRecordTest.php

示例5: shouldUseCest

 public function shouldUseCest(CodeGuy $I)
 {
     $I->haveFakeClass($scenario = \Codeception\Util\Stub::makeEmptyExcept('Codeception\\Scenario', 'comment'));
     $I->executeMethod($scenario, 'comment', 'cool, that works!');
     $I->seeMethodInvoked($scenario, 'addStep');
 }
開發者ID:pfz,項目名稱:codeception,代碼行數:6,代碼來源:SimpleWithNoClassCest.php


注:本文中的Codeception\Util\Stub::makeEmptyExcept方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。