Total Complexity | 5 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class LazyHandlerTest extends TestCase |
||
13 | { |
||
14 | /** @var ContainerInterface */ |
||
15 | private $container; |
||
16 | |||
17 | public function setUp() |
||
18 | { |
||
19 | $this->container = new class implements ContainerInterface |
||
20 | { |
||
21 | public function has($id) |
||
24 | } |
||
25 | |||
26 | public function get($id) |
||
29 | } |
||
30 | }; |
||
31 | } |
||
32 | |||
33 | public function testVerifiesHandlerImplementation(): void |
||
39 | } |
||
40 | |||
41 | public function testDefersToHandlerImplemention(): void |
||
50 | } |
||
51 | } |
||
52 |