本文整理匯總了PHP中Prophecy\Prophecy\ObjectProphecy::getType方法的典型用法代碼示例。如果您正苦於以下問題:PHP ObjectProphecy::getType方法的具體用法?PHP ObjectProphecy::getType怎麽用?PHP ObjectProphecy::getType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Prophecy\Prophecy\ObjectProphecy
的用法示例。
在下文中一共展示了ObjectProphecy::getType方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getSQLDelegatesToConcreteQueryBuilder
/**
* @test
*/
public function getSQLDelegatesToConcreteQueryBuilder()
{
$this->concreteQueryBuilder->getSQL()->shouldBeCalled()->willReturn('UPDATE aTable SET pid = 7');
$this->concreteQueryBuilder->getType()->willReturn(2);
// Update Type
$this->subject->getSQL();
}
示例2: testSendMail
public function testSendMail()
{
$this->event->getType()->shouldBeCalledTimes(1)->willReturn('email_type1');
$this->event->getTo()->shouldBeCalledTimes(1)->willReturn('to@email.com');
$this->event->getParams()->shouldBeCalledTimes(1)->willReturn([]);
$this->mailResolver->sendMail('email_type1', 'to@email.com', [])->shouldBeCalledTimes(1);
$this->class->sendMail($this->event->reveal());
}
示例3: setUp
protected function setUp()
{
$typeName = Cache::TYPE_NAME;
$this->type = $this->prophesize('\\Elastica\\Type');
$this->type->request(Argument::any(), Argument::cetera())->willReturn(true);
$this->type->getName()->willReturn($typeName);
$this->index = $this->prophesize('\\Elastica\\Index');
$this->index->getType($typeName)->willReturn($this->type->reveal());
$this->index->exists()->willReturn(true);
$nsDoc = new Document('DoctrineNamespaceCacheKey[]', [Cache::VALUE_FIELD => serialize($this->namespaceId)]);
$this->type->getIndex()->willReturn($this->index->reveal());
$this->type->getDocument("DoctrineNamespaceCacheKey[]")->willReturn($nsDoc);
$this->client = $this->prophesize('\\Elastica\\Client');
$this->client->getIndex($this->indexName)->willReturn($this->index->reveal());
$this->cache = new Cache($this->client->reveal(), ['index' => $this->indexName]);
}