| Conditions | 3 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | protected function setUp() : void |
||
| 14 | { |
||
| 15 | if (! extension_loaded('pdo_sqlite')) { |
||
| 16 | $this->markTestSkipped('pdo_sqlite is not installed.'); |
||
| 17 | } |
||
| 18 | |||
| 19 | parent::setUp(); |
||
| 20 | |||
| 21 | if ($this->connection->getDriver() instanceof Driver) { |
||
| 22 | return; |
||
| 23 | } |
||
| 24 | |||
| 25 | $this->markTestSkipped('pdo_sqlite only test.'); |
||
| 26 | } |
||
| 49 |