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