| 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 testWrongServerInfoFailed(): void |
||
| 18 | { |
||
| 19 | $this->expectException(StorageException::class); |
||
| 20 | $this->expectExceptionMessage( |
||
| 21 | \sprintf('Wrong filesystem info `%s` provided for `%s`', AwsS3Info::class, LocalBuilder::class) |
||
| 22 | ); |
||
| 23 | |||
| 24 | new LocalBuilder($this->buildAwsS3Info()); |
||
| 25 | } |
||
| 27 |