Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class ConfigTest extends TestCase |
||
19 | { |
||
20 | public function testBadSequence(): void |
||
21 | { |
||
22 | $this->expectException(ConfigException::class); |
||
23 | |||
24 | $config = new ConsoleConfig([ |
||
25 | 'updateSequence' => [ |
||
26 | $this, |
||
27 | ], |
||
28 | ]); |
||
29 | |||
30 | iterator_to_array($config->updateSequence()); |
||
31 | } |
||
32 | |||
33 | public function testForcedSequence(): void |
||
42 | } |
||
43 | } |
||
44 |