| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function testValidateNoOptionsFailed(): void |
||
| 19 | { |
||
| 20 | $fsName = 'some'; |
||
| 21 | |||
| 22 | $this->expectException(ConfigException::class); |
||
| 23 | $this->expectExceptionMessage(\sprintf('Filesystem `%s` needs options defined', $fsName)); |
||
| 24 | |||
| 25 | new LocalInfo( |
||
| 26 | $fsName, |
||
| 27 | [LocalInfo::ADAPTER_KEY => LocalFilesystemAdapter::class] |
||
| 28 | ); |
||
| 52 |