| 1 | <?php |
||
| 9 | class MySQLDeadLockTestStub extends BrokenTestBase implements BrokenTestInterface |
||
| 10 | { |
||
| 11 | const OUTPUT = 'SQLSTATE[HY000]: General error: Deadlock found; try restarting transaction'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @throws \Exception |
||
| 15 | */ |
||
| 16 | public function testBrokenTest() |
||
| 17 | { |
||
| 18 | throw new \Exception(self::OUTPUT); |
||
| 19 | } |
||
| 20 | } |
||
| 21 |