15 lines
255 B
PHP
15 lines
255 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
class DbalFunctionalTestCase extends DbalTestCase
|
|
{
|
|
protected $_conn;
|
|
|
|
protected function setUp()
|
|
{
|
|
if ( ! isset($this->_conn)) {
|
|
$this->_conn = TestUtil::getConnection();
|
|
}
|
|
}
|
|
} |