| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function testGetTableSchema(): void |
||
| 21 | { |
||
| 22 | $db = $this->getConnection(); |
||
| 23 | |||
| 24 | $this->expectException(NotSupportedException::class); |
||
| 25 | $this->expectExceptionMessage( |
||
| 26 | 'Yiisoft\Db\Tests\Support\Stub\Schema::loadTableSchema is not supported by this DBMS.' |
||
| 27 | ); |
||
| 28 | |||
| 29 | $db->getTableSchema('non_existing_table'); |
||
| 30 | } |
||
| 32 |