@covers Symfony\Component\DependencyInjection\Container::set
public function testSet() { $sc = new Container(); $sc ->set('foo', $foo = new \stdClass()); $this ->assertEquals($foo, $sc ->get('foo'), '->set() sets a service'); }