| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class NoopHandlerFactoryTest extends TestCase |
||
| 18 | { |
||
| 19 | private ContainerInterface $container; |
||
| 20 | |||
| 21 | public function setUp(): void |
||
| 22 | { |
||
| 23 | $this->container = $this->createMock(ContainerInterface::class); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testImplementsFactoryInterface(): void |
||
| 27 | { |
||
| 28 | $factory = new NoopHandlerFactory(); |
||
| 29 | $this->assertInstanceOf(FactoryInterface::class, $factory); |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @throws ServiceNotCreatedException |
||
| 34 | */ |
||
| 35 | public function testInvoke(): void |
||
| 40 | } |
||
| 41 | } |
||
| 42 |