コード例 #1
0
ファイル: ContainerTest.php プロジェクト: mnapoli/simplex
 public function testGet()
 {
     $pimple = new Container();
     $pimple['param'] = 'value';
     $this->assertEquals('value', $pimple->get('param'));
 }