Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
23 | public function testGetLinkHeading() |
||
24 | { |
||
25 | $config = new DefaultApplicationConfiguration([ |
||
26 | 'MICRO_FS_TEST_LINK_HANDLING' => 3, // Invalid value |
||
27 | ]); |
||
28 | |||
29 | $adapterCfg = new LocalAdapterConfiguration($config, 'test'); |
||
30 | |||
31 | $this->expectException(InvalidConfigurationException::class); |
||
32 | $adapterCfg->getLinkHeading(); |
||
33 | } |
||
35 |