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