| Total Complexity | 2 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 9 | class ProcessHelperFactoryTest extends TestCase  | 
            ||
| 10 | { | 
            ||
| 11 | /** @var ProcessHelperFactory */  | 
            ||
| 12 | private $factory;  | 
            ||
| 13 | |||
| 14 | public function setUp(): void  | 
            ||
| 15 |     { | 
            ||
| 16 | $this->factory = new ProcessHelperFactory();  | 
            ||
| 17 | }  | 
            ||
| 18 | |||
| 19 | /** @test */  | 
            ||
| 20 | public function createsTheServiceWithTheProperSetOfHelpers(): void  | 
            ||
| 28 | }  | 
            ||
| 29 | }  | 
            ||
| 30 |