public function ProxyLogicTest::testCallingMethodCausesLazyLoading in Plug 7
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ ProxyLogicTest.php, line 130
Class
- ProxyLogicTest
- Test the generated proxies behavior. These tests make assumptions about the structure of LazyLoadableObject
Namespace
Doctrine\Tests\Common\ProxyCode
public function testCallingMethodCausesLazyLoading() {
$this
->configureInitializerMock(1, array(
$this->lazyObject,
'testInitializationTriggeringMethod',
array(),
), function (Proxy $proxy) {
$proxy
->__setInitializer(null);
});
$this->lazyObject
->testInitializationTriggeringMethod();
$this->lazyObject
->testInitializationTriggeringMethod();
}