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