Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | public function testGetSubQueryColumnDescriptors(): void |
||
12 | { |
||
13 | $queryFactory = new FindObjectsFromRawSqlQueryFactory($this->tdbmService, $this->tdbmService->getConnection()->getSchemaManager()->createSchema(), 'country', 'SELECT country.* FROM country'); |
||
14 | $this->expectException(TDBMException::class); |
||
15 | $queryFactory->getSubQueryColumnDescriptors(); |
||
16 | } |
||
25 |