2008-02-09 21:59:19 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Base testcase class for all orm testcases.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class Doctrine_OrmTestCase extends Doctrine_TestCase
|
|
|
|
{
|
2008-05-24 22:18:37 +04:00
|
|
|
protected function setUp() {
|
|
|
|
$em = new Doctrine_EntityManager(new Doctrine_Connection_Mock());
|
|
|
|
}
|
|
|
|
}
|