You are here

public function ProxyLogicTest::testCheckingPublicFieldsCausesLazyLoading in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTest.php \Doctrine\Tests\Common\Proxy\ProxyLogicTest::testCheckingPublicFieldsCausesLazyLoading()

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/ProxyLogicTest.php, line 558

Class

ProxyLogicTest
Test the generated proxies behavior. These tests make assumptions about the structure of LazyLoadableObject

Namespace

Doctrine\Tests\Common\Proxy

Code

public function testCheckingPublicFieldsCausesLazyLoading() {
  $test = $this;
  $this
    ->configureInitializerMock(1, array(
    $this->lazyObject,
    '__isset',
    array(
      'publicPersistentField',
    ),
  ), function () use ($test) {
    $test
      ->setProxyValue('publicPersistentField', null);
    $test
      ->setProxyValue('publicAssociation', 'setPublicAssociation');
  });
  $this
    ->assertFalse(isset($this->lazyObject->publicPersistentField));
  $this
    ->assertNull($this->lazyObject->publicPersistentField);
  $this
    ->assertTrue(isset($this->lazyObject->publicAssociation));
  $this
    ->assertSame('setPublicAssociation', $this->lazyObject->publicAssociation);
}