Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class ContainerTest extends TestCase |
||
10 | { |
||
11 | public function testSetGet() |
||
19 | } |
||
20 | |||
21 | public function testSetFail() |
||
27 | } |
||
28 | |||
29 | public function testGetFail() |
||
30 | { |
||
31 | $container = new Container(); |
||
32 | $this->expectException(ContainerException::class); |
||
33 | $container->get('foo'); |
||
34 | } |
||
35 | |||
36 | public function testExtend() |
||
44 | } |
||
45 | } |