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

19 lines
529 B
PHP

<?php
/**
* The outermost test suite for all dbal related testcases & suites.
*
* Currently the dbal suite uses a normal connection object, too, just like the orm suite.
* Upon separation of the DBAL and ORM package this suite should just use a DBAL
* connection in the shared fixture.
*/
class Doctrine_DbalTestSuite extends Doctrine_TestSuite
{
protected function setUp()
{
$this->sharedFixture['conn'] = Doctrine_TestUtil::getConnection();
}
protected function tearDown()
{}
}