Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | public function test_unknown_services_resetter() |
||
35 | { |
||
36 | $this->expectException(\LogicException::class); |
||
37 | |||
38 | $receiverFactory = $this->createMock(ReceiverFactory::class); |
||
39 | $next = $this->createMock(ReceiverInterface::class); |
||
40 | |||
41 | $factory = new ResetServicesFactory(); |
||
42 | |||
43 | $this->assertInstanceOf(ResetServices::class, $factory->create($receiverFactory, $next)); |
||
44 | } |
||
46 |