public function testProcessIgnoreNonExistentServices() {
$container = new ContainerBuilder();
$def = $container
->register('foo')
->setArguments(array(
new Reference('bar'),
));
$this
->process($container);
$arguments = $def
->getArguments();
$this
->assertEquals('bar', (string) $arguments[0]);
}