| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 16 | protected function setUp(): void | ||
| 17 |     { | ||
| 18 | parent::setUp(); | ||
| 19 | |||
| 20 | $connection = $this->getRawDatabaseConnection(); | ||
| 21 | $dbms = $connection->getDatabasePlatform()->getName(); | ||
| 22 | |||
| 23 |         if (!in_array($dbms, ['mysql', 'postgresql'])) { | ||
| 24 |             $this->markTestSkipped('Parallel test require mysql or postgresql db'); | ||
| 25 | } | ||
| 26 | } | ||
| 27 | |||
| 57 |