| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testDsnHelper(): void |
||
| 16 | { |
||
| 17 | $dsn = new Dsn('mysql', '127.0.0.1', 'yiitest', '3306'); |
||
| 18 | |||
| 19 | $connection = new Connection($this->cache, $this->logger, $this->profiler, $dsn->getDsn()); |
||
| 20 | |||
| 21 | $this->assertEquals('mysql:host=127.0.0.1;dbname=yiitest;port=3306', $connection->getDsn()); |
||
| 22 | } |
||
| 24 |