Example #1
0
 public function testSetContainerCreatesRegistersContainerInstance()
 {
     $foo = new Container(array('foo', 'bar'));
     $this->assertFalse($this->registry->containerExists('foo'));
     $this->registry->setContainer('foo', $foo);
     $container = $this->registry->getContainer('foo');
     $this->assertSame($foo, $container);
 }