Exemplo n.º 1
0
 public function testSet()
 {
     $pimple = new Container();
     $pimple->set('param', 'value');
     $this->assertEquals('value', $pimple['param']);
 }
Exemplo n.º 2
0
 public function testExtendingNothing()
 {
     $pimple = new Container();
     $pimple->register(new SimplexServiceProvider());
     $this->assertNull($pimple['previous']);
 }