Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testUnknownServicesResetter() |
||
26 | { |
||
27 | $this->expectException(\LogicException::class); |
||
28 | |||
29 | $receiverFactory = $this->createMock(ReceiverFactory::class); |
||
30 | $next = $this->createMock(ReceiverInterface::class); |
||
31 | |||
32 | $factory = new ResetServicesFactory(); |
||
33 | |||
34 | $this->assertInstanceOf(ResetServices::class, $factory->create($receiverFactory, $next)); |
||
35 | } |
||
37 |