@expectedException OutOfBoundsException
public function testGetArgumentShouldCheckBounds() {
$def = new DefinitionDecorator('foo');
$def
->setArguments(array(
0 => 'foo',
));
$def
->replaceArgument(0, 'foo');
$def
->getArgument(1);
}