1 | <?php |
||
9 | class SQLiteDeadLockTestStub extends BrokenTestBase implements BrokenTestInterface |
||
10 | { |
||
11 | const OUTPUT = 'SQLSTATE[HY000]: General error: 5 database is locked (SQL: insert into "wallets" ("name", "user_id", "updated_at", "created_at") values (test_wallet, 1, 2015-11-25 21:07:38, 2015-11-25 21:07:38))'; |
||
12 | |||
13 | /** |
||
14 | * @throws \Exception |
||
15 | */ |
||
16 | public function testBrokenTest() |
||
17 | { |
||
18 | throw new \Exception(self::OUTPUT); |
||
19 | } |
||
20 | } |
||
21 |