public function AbstractProxyFactoryTest::testMissingPrimaryKeyValue in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ AbstractProxyFactoryTest.php, line 118
Class
Namespace
Doctrine\Tests\Common\ProxyCode
public function testMissingPrimaryKeyValue() {
$metadata = $this
->getMock('Doctrine\\Common\\Persistence\\Mapping\\ClassMetadata');
$proxy = $this
->getMock('Doctrine\\Common\\Proxy\\Proxy');
$definition = new ProxyDefinition(get_class($proxy), array(
'missingKey',
), array(), null, null);
$proxyGenerator = $this
->getMock('Doctrine\\Common\\Proxy\\ProxyGenerator', array(), array(), '', false);
$metadataFactory = $this
->getMock('Doctrine\\Common\\Persistence\\Mapping\\ClassMetadataFactory');
$metadataFactory
->expects($this
->once())
->method('getMetadataFor')
->will($this
->returnValue($metadata));
$proxyFactory = $this
->getMockForAbstractClass('Doctrine\\Common\\Proxy\\AbstractProxyFactory', array(
$proxyGenerator,
$metadataFactory,
true,
));
$proxyFactory
->expects($this
->any())
->method('createProxyDefinition')
->will($this
->returnValue($definition));
$this
->setExpectedException('\\OutOfBoundsException');
$generatedProxy = $proxyFactory
->getProxy('Class', array());
}