1
0
mirror of synced 2025-01-19 06:51:40 +03:00
doctrine2/tests/lib/Doctrine_OrmTestCase.php

12 lines
233 B
PHP
Raw Normal View History

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