1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/tests/lib/Doctrine_OrmTestCase.php

12 lines
233 B
PHP
Raw Normal View History

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());
}
}