Rajout de doctrine/orm
[zf2.biz/application_blanche.git] / vendor / doctrine / orm / tests / Doctrine / Tests / DbalFunctionalTestCase.php
diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/DbalFunctionalTestCase.php b/vendor/doctrine/orm/tests/Doctrine/Tests/DbalFunctionalTestCase.php
new file mode 100644 (file)
index 0000000..c4705a2
--- /dev/null
@@ -0,0 +1,32 @@
+<?php
+
+namespace Doctrine\Tests;
+
+class DbalFunctionalTestCase extends DbalTestCase
+{
+    /* Shared connection when a TestCase is run alone (outside of it's functional suite) */
+    private static $_sharedConn;
+
+    /**
+     * @var Doctrine\DBAL\Connection
+     */
+    protected $_conn;
+
+    protected function resetSharedConn()
+    {
+        $this->sharedFixture['conn'] = null;
+        self::$_sharedConn = null;
+    }
+
+    protected function setUp()
+    {
+        if (isset($this->sharedFixture['conn'])) {
+            $this->_conn = $this->sharedFixture['conn'];
+        } else {
+            if ( ! isset(self::$_sharedConn)) {
+                self::$_sharedConn = TestUtil::getConnection();
+            }
+            $this->_conn = self::$_sharedConn;
+        }
+    }
+}
\ No newline at end of file