1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/tests/lib/Doctrine_DbalTestCase.php
2008-12-18 14:08:11 +00:00

23 lines
627 B
PHP

<?php
/**
* Base testcase class for all dbal testcases.
*/
class Doctrine_DbalTestCase extends Doctrine_TestCase
{
protected $_conn;
/**
* setUp()
*/
protected function setUp()
{
// Setup a db connection if there is none, yet. This makes it possible
// to run tests that use a connection standalone.
if (isset($this->sharedFixture['conn'])) {
$this->_conn = $this->sharedFixture['conn'];
} else {
$this->sharedFixture['conn'] = Doctrine_TestUtil::getConnection();
$this->_conn = $this->sharedFixture['conn'];
}
}
}