12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
-
- namespace Doctrine\Tests\ORM\Functional;
-
- require_once __DIR__ . '/../../TestInit.php';
-
-
- class ReadOnlyTest extends \Doctrine\Tests\OrmFunctionalTestCase
- {
- protected function setUp()
- {
- parent::setUp();
-
- $this->_schemaTool->createSchema(array(
- $this->_em->getClassMetadata('Doctrine\Tests\ORM\Functional\ReadOnlyEntity'),
- ));
- }
-
- public function testReadOnlyEntityNeverChangeTracked()
- {
- $readOnly = new ReadOnlyEntity("Test1", 1234);
- $this->_em->persist($readOnly);
- $this->_em->flush();
-
- $readOnly->name = "Test2";
- $readOnly->number = 4321;
-
- $this->_em->flush();
- $this->_em->clear();
-
- $dbReadOnly = $this->_em->find('Doctrine\Tests\ORM\Functional\ReadOnlyEntity', $readOnly->id);
- $this->assertEquals("Test1", $dbReadOnly->name);
- $this->assertEquals(1234, $dbReadOnly->number);
- }
- }
-
-
- class ReadOnlyEntity
- {
-
-
- public $id;
-
- public $name;
-
- public $number;
-
- public function __construct($name, $number)
- {
- $this->name = $name;
- $this->number = $number;
- }
- }
|