Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / ORM / Functional / Ticket / DDC933Test.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC933Test.php b/vendor/doctrine/orm/tests/Doctrine/Tests/ORM/Functional/Ticket/DDC933Test.php
new file mode 100644 (file)
index 0000000..cd2b584
--- /dev/null
@@ -0,0 +1,39 @@
+<?php
+
+namespace Doctrine\Tests\ORM\Functional\Ticket;
+
+use Doctrine\Common\Collections\ArrayCollection;
+use Doctrine\Tests\Models\CMS\CmsUser;
+use Doctrine\Tests\Models\CMS\CmsGroup;
+
+require_once __DIR__ . '/../../../TestInit.php';
+
+class DDC933Test extends \Doctrine\Tests\OrmFunctionalTestCase
+{
+    public function setUp()
+    {
+        $this->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();
+    }
+}
\ No newline at end of file