本文整理匯總了PHP中Doctrine\ORM\EntityManagerInterface::shouldReceive方法的典型用法代碼示例。如果您正苦於以下問題:PHP EntityManagerInterface::shouldReceive方法的具體用法?PHP EntityManagerInterface::shouldReceive怎麽用?PHP EntityManagerInterface::shouldReceive使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Doctrine\ORM\EntityManagerInterface
的用法示例。
在下文中一共展示了EntityManagerInterface::shouldReceive方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: test_can_boot_service_provider_with_two_connection
public function test_can_boot_service_provider_with_two_connection()
{
$this->registry->shouldReceive('getManagers')->once()->andReturn(['default' => $this->em, 'custom' => $this->em]);
$this->em->shouldReceive('getConfiguration')->twice()->andReturn($this->configuration);
$this->configuration->shouldReceive('getMetadataDriverImpl')->twice()->andReturn($this->chain);
$this->chain->shouldReceive('getReader')->twice()->andReturn($this->reader);
$this->chain->shouldReceive('addDriver')->twice();
$this->app->shouldReceive('make')->with('config')->twice()->andReturn($this->config);
$this->config->shouldReceive('get')->with('doctrine.gedmo.all_mappings', false)->twice()->andReturn(true);
$this->provider->boot($this->registry);
}
示例2: testProcessValid
public function testProcessValid()
{
$handler = new TestFormCreateHandler($this->entityManagerMock);
$this->requestMock->shouldReceive('isMethod')->andReturn(true);
$this->formMock->shouldReceive('submit');
$this->formMock->shouldReceive('handleRequest');
$this->formMock->shouldReceive('isSubmitted')->andReturn(true);
$this->formMock->shouldReceive('isValid')->andReturn(true);
$this->formMock->shouldReceive('getData');
$this->entityManagerMock->shouldReceive('persist');
$this->entityManagerMock->shouldReceive('flush');
$this->assertTrue($handler->process($this->formMock, $this->requestMock), 'Process must return true for valid form data');
}
示例3: testCommandFailsOnErrorAndTransactionIsRolledBack
/**
* @requires PHP 7
*
* @expectedException Error
* @expectedExceptionMessage CommandFails
*/
public function testCommandFailsOnErrorAndTransactionIsRolledBack()
{
$this->entityManager->shouldReceive('beginTransaction')->once();
$this->entityManager->shouldReceive('close')->once();
$this->entityManager->shouldReceive('rollback')->once();
$this->entityManager->shouldReceive('commit')->never();
$this->entityManager->shouldReceive('flush')->never();
$next = function () {
throw new Error('CommandFails');
};
$this->middleware->execute(new stdClass(), $next);
}
示例4: mockEmCalls
protected function mockEmCalls()
{
$this->em->shouldReceive('getConfiguration')->once()->andReturn(m::mock(Configuration::class));
$this->em->shouldReceive('getConnection')->once()->andReturn(m::mock(Connection::class));
$this->em->shouldReceive('getEventManager')->once()->andReturn(m::mock(EventManager::class));
}
示例5: finishShouldOnlyFlushIfItemIsWritten
/**
* @test
* @covers Plum\PlumDoctrine\ORM\EntityWriter::finish()
*/
public function finishShouldOnlyFlushIfItemIsWritten()
{
$this->entityManager->shouldReceive('flush')->never();
$writer = new EntityWriter($this->entityManager);
$writer->finish();
}