| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testCleanUpTableNames(): void |
||
| 16 | { |
||
| 17 | $this->expectException(InvalidArgumentException::class); |
||
| 18 | $this->expectExceptionMessage('To use Expression in from() method, pass it in array format with alias.'); |
||
| 19 | Mock::queryHelper()->cleanUpTableNames([new Expression('(SELECT id FROM user)')], new Quoter('"', '"')); |
||
| 20 | } |
||
| 22 |