19 lines
567 B
PHP
19 lines
567 B
PHP
<?php
|
|
/**
|
|
* The outermost test suite for all orm related testcases & suites.
|
|
*
|
|
* Currently the orm suite uses a normal connection object.
|
|
* Upon separation of the DBAL and ORM package this suite should just use a orm
|
|
* connection/session/manager instance as the shared fixture.
|
|
*/
|
|
class Doctrine_OrmFunctionalTestSuite extends Doctrine_OrmTestSuite
|
|
{
|
|
protected function setUp()
|
|
{
|
|
$this->sharedFixture['em'] = new Doctrine_EntityManager(
|
|
Doctrine_TestUtil::getConnection());
|
|
}
|
|
|
|
protected function tearDown()
|
|
{}
|
|
} |