| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | public function testFileNoExists() |
||
| 25 | { |
||
| 26 | $connection = new ConnectionMock(); |
||
| 27 | $this->expectException(Exception::class); |
||
| 28 | $this->expectExceptionMessage('Backup file don`t exist.'); |
||
| 29 | $backupFilePath = Yii::getAlias('@app/data/no-exist.tgz'); |
||
| 30 | new DatabaseBackupRestorer($backupFilePath, $connection); |
||
|
|
|||
| 31 | } |
||
| 53 | } |