Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function testGetMagicSqlSubQuery(): void |
||
19 | { |
||
20 | $queryFactory = new FindObjectsFromRawSqlQueryFactory($this->tdbmService, $this->tdbmService->getConnection()->getSchemaManager()->createSchema(), 'country', 'SELECT country.* FROM country'); |
||
21 | $this->expectException(TDBMException::class); |
||
22 | $queryFactory->getMagicSqlSubQuery(); |
||
23 | } |
||
25 |