1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/tests/lib/Doctrine_OrmTestCase.php
2008-05-24 18:18:37 +00:00

12 lines
233 B
PHP

<?php
/**
* Base testcase class for all orm testcases.
*
*/
class Doctrine_OrmTestCase extends Doctrine_TestCase
{
protected function setUp() {
$em = new Doctrine_EntityManager(new Doctrine_Connection_Mock());
}
}