本文整理匯總了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'));
}
示例2: testMakeEmptyExceptProperyRepalced
public function testMakeEmptyExceptProperyRepalced()
{
$dummy = Stub::makeEmptyExcept('DummyClass', 'getCheckMe', array('checkMe' => 'checked!'));
$this->assertEquals('checked!', $dummy->getCheckMe());
}
示例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));
}
示例4: testFindAll
public function testFindAll()
{
$stub_record = Stub::makeEmptyExcept('Comment', 'findAll', ['findBy' => Stub::once(function () {
return true;
})]);
$stub_record->findAll();
}
示例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');
}