1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/Doctrine/Tests/DbalFunctionalTestCase.php

15 lines
255 B
PHP
Raw Normal View History

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