Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class ContainerTest extends TestCase |
||
10 | { |
||
11 | public function testSetGet() |
||
19 | } |
||
20 | |||
21 | public function testSetFail() |
||
22 | { |
||
23 | $container = new Container(['foo' => 1]); |
||
24 | |||
25 | $this->expectException(ContainerException::class); |
||
26 | $container->set('foo', 2); |
||
27 | } |
||
28 | |||
29 | public function testExtend() |
||
37 | } |
||
38 | } |