1
0
mirror of synced 2025-03-20 06:53:55 +03:00

changes on the new test suite.

This commit is contained in:
romanb 2008-02-10 17:33:46 +00:00
parent ba308004b4
commit 36708c91ba
2 changed files with 23 additions and 1 deletions

View File

@ -4,5 +4,22 @@
*/
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');
}
}
}

View File

@ -24,6 +24,11 @@ class Doctrine_OrmTestCase extends Doctrine_TestCase
/**
* 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()
{