| Total Complexity | 1 | 
| Total Lines | 36 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1);  | 
            ||
| 8 | class ConnectionConfigUrlTest extends TestCase  | 
            ||
| 9 | { | 
            ||
| 10 | const URL_PART_SCHEME = 'mysql';  | 
            ||
| 11 | const URL_PART_USER = 'user';  | 
            ||
| 12 | const URL_PART_PASS = 'password';  | 
            ||
| 13 | const URL_PART_HOST = 'host';  | 
            ||
| 14 | const URL_PART_PORT = 1234;  | 
            ||
| 15 | const URL_PART_PATH = 'database_name';  | 
            ||
| 16 | |||
| 17 | public function testConstruct()  | 
            ||
| 46 |