2009-05-28 02:14:27 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
|
|
|
|
class DbalFunctionalTestCase extends DbalTestCase
|
|
|
|
{
|
2009-05-30 06:27:50 +04:00
|
|
|
protected $_conn;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
if ( ! isset($this->_conn)) {
|
2009-05-30 13:37:56 +04:00
|
|
|
if ( ! isset($this->sharedFixture['conn'])) {
|
|
|
|
$this->sharedFixture['conn'] = TestUtil::getConnection();
|
|
|
|
}
|
|
|
|
$this->_conn = $this->sharedFixture['conn'];
|
2009-05-30 06:27:50 +04:00
|
|
|
}
|
|
|
|
}
|
2009-05-28 02:14:27 +04:00
|
|
|
}
|