useModelSet('company'); parent::setUp(); } /** * @group DDC-933 */ public function testLockCTIClass() { //$this->_em->getConnection()->getConfiguration()->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger()); $manager = new \Doctrine\Tests\Models\Company\CompanyManager(); $manager->setName('beberlei'); $manager->setSalary(1234); $manager->setTitle('Vice Precident of This Test'); $manager->setDepartment("Foo"); $this->_em->persist($manager); $this->_em->flush(); $this->_em->beginTransaction(); $this->_em->lock($manager, \Doctrine\DBAL\LockMode::PESSIMISTIC_READ); $this->_em->rollback(); } }