| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function testWrongFsInfoFailed(): void |
||
| 18 | { |
||
| 19 | $this->expectException(StorageException::class); |
||
| 20 | $this->expectExceptionMessage( |
||
| 21 | \sprintf('Wrong filesystem info `%s` provided for `%s`', LocalInfo::class, AwsS3Builder::class) |
||
| 22 | ); |
||
| 23 | |||
| 24 | new AwsS3Builder($this->buildLocalInfo()); |
||
| 25 | } |
||
| 27 |