changes on the new test suite.
This commit is contained in:
parent
ba308004b4
commit
36708c91ba
2 changed files with 23 additions and 1 deletions
|
@ -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');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue