| 1 | <?php |
||
| 9 | class EntityManagerClosedTestStub extends BrokenTestBase implements BrokenTestInterface |
||
| 10 | { |
||
| 11 | const OUTPUT = 'Blah Blah The EntityManager is closed Blah Blah'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @throws \Exception |
||
| 15 | */ |
||
| 16 | public function testBrokenTest() |
||
| 17 | { |
||
| 18 | throw new \Exception(self::OUTPUT); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |