Commit 36708c91 authored by romanb's avatar romanb

changes on the new test suite.

parent ba308004
...@@ -4,5 +4,22 @@ ...@@ -4,5 +4,22 @@
*/ */
class Doctrine_DbalTestCase extends Doctrine_TestCase class Doctrine_DbalTestCase extends Doctrine_TestCase
{ {
/**
* setUp()
*
* Note: This setUp() and the one of OrmTestCase currently look identical. However,
* please dont pull this method up. In the future with a separation of Dbal/Orm
* this setUp() will take care of a DBAL connection and the ORM setUp() will take care
* of an ORM connection/session/manager.
*/
protected function setUp()
{
// Setup a db connection if there is none, yet. This makes it possible
// to run tests that use a connection standalone.
// @todo Make DBMS choice configurable
if ( ! isset($this->sharedFixture['connection'])) {
$pdo = new PDO('sqlite::memory:');
$this->sharedFixture['connection'] = Doctrine_Manager::connection($pdo, 'sqlite_memory');
}
}
} }
\ No newline at end of file
...@@ -24,6 +24,11 @@ class Doctrine_OrmTestCase extends Doctrine_TestCase ...@@ -24,6 +24,11 @@ class Doctrine_OrmTestCase extends Doctrine_TestCase
/** /**
* setUp() * setUp()
*
* Note: This setUp() and the one of DbalTestCase currently look identical. However,
* please dont pull this method up. In the future with a separation of Dbal/Orm
* this setUp() will take care of a ORM connection/session/manager initialization
* and the DBAL setUp() will take care of just a DBAL connection.
*/ */
protected function setUp() protected function setUp()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment