Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function testServiceInstantiation() |
||
14 | { |
||
15 | $receiverFactory = $this->createMock(ReceiverFactory::class); |
||
16 | $resetter = $this->createMock(ServicesResetter::class); |
||
17 | |||
18 | $factory = new ResetServicesFactory(); |
||
19 | |||
20 | $this->assertInstanceOf(ResetServices::class, $factory->create($receiverFactory, $resetter)); |
||
21 | } |
||
34 |