Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function createsTheServiceWithTheProperSetOfHelpers(): void |
||
21 | { |
||
22 | $processHelper = ($this->factory)(); |
||
23 | $helperSet = $processHelper->getHelperSet(); |
||
24 | |||
25 | $this->assertCount(2, $helperSet); |
||
26 | $this->assertTrue($helperSet->has('formatter')); |
||
27 | $this->assertTrue($helperSet->has('debug_formatter')); |
||
28 | } |
||
30 |