2009-05-27 18:54:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Doctrine\Tests;
|
|
|
|
|
|
|
|
class DbalFunctionalTestSuite extends DbalTestSuite
|
|
|
|
{
|
2009-05-30 02:27:50 +00:00
|
|
|
protected function setUp()
|
|
|
|
{
|
2009-05-30 09:37:56 +00:00
|
|
|
if ( ! isset($this->sharedFixture['conn'])) {
|
|
|
|
$this->sharedFixture['conn'] = TestUtil::getConnection();
|
2009-05-30 02:27:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
2009-05-30 13:57:57 +00:00
|
|
|
$this->sharedFixture['conn']->close();
|
2009-05-30 09:37:56 +00:00
|
|
|
$this->sharedFixture = null;
|
2009-05-30 02:27:50 +00:00
|
|
|
}
|
2009-05-27 18:54:40 +00:00
|
|
|
}
|