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 $_conn;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
if ( ! isset($this->_conn)) {
|
|
|
|
$this->_conn = TestUtil::getConnection();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
|
|
|
$this->_conn = null;
|
|
|
|
}
|
2009-05-27 18:54:40 +00:00
|
|
|
}
|