| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class ErrorLogHandlerFactoryTest extends TestCase |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var ContainerInterface&MockObject |
||
| 23 | */ |
||
| 24 | private $container; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Prepare the test case dependencies |
||
| 28 | */ |
||
| 29 | public function setUp(): void |
||
| 30 | { |
||
| 31 | $this->container = $this->createMock(ContainerInterface::class); |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Assert that the factory implements FactoryInterface |
||
| 36 | */ |
||
| 37 | public function testImplementsFactoryInterface(): void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |