18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
class DbalFunctionalTestSuite extends DbalTestSuite
|
|
{
|
|
protected function setUp()
|
|
{
|
|
if ( ! isset($this->sharedFixture['conn'])) {
|
|
$this->sharedFixture['conn'] = TestUtil::getConnection();
|
|
}
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->sharedFixture = null;
|
|
}
|
|
} |