| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | public function testMissingHandler(): void |
||
| 16 | { |
||
| 17 | $container = $this->createMock(Container::class); |
||
| 18 | $containerMapLocator = new ContainerMapLocator($container); |
||
| 19 | $this->expectException(MissingHandlerException::class); |
||
| 20 | $containerMapLocator->getHandlerForCommand(HelloJob::class); |
||
| 21 | } |
||
| 34 |