| 1 | <?php |
||
| 12 | abstract class DatabaseTestCase extends TestCase |
||
| 13 | { |
||
| 14 | const ENTITIES_TO_EMPTY = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var EntityManagerInterface |
||
| 18 | */ |
||
| 19 | public static $em; |
||
| 20 | /** |
||
| 21 | * @var DbConn |
||
| 22 | */ |
||
| 23 | private static $conn; |
||
| 24 | |||
| 25 | public function getConnection(): DbConn |
||
| 35 | |||
| 36 | public function getDataSet(): DataSet |
||
| 40 | |||
| 41 | protected function getEntityManager(): EntityManagerInterface |
||
| 45 | |||
| 46 | public function tearDown() |
||
| 58 | } |
||
| 59 |