2008-02-09 21:59:19 +03:00
|
|
|
<?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()
|
|
|
|
{
|
2008-06-15 19:56:28 +04:00
|
|
|
$this->sharedFixture['conn'] = Doctrine_TestUtil::getConnection();
|
2008-02-09 21:59:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown()
|
2008-02-10 17:32:05 +03:00
|
|
|
{}
|
2008-02-09 21:59:19 +03:00
|
|
|
}
|