@dataProvider getInvalidPaths @expectedException \InvalidArgumentException
public function testGetDeepWithInvalidPaths($path) {
$bag = new ParameterBag(array(
'foo' => array(
'bar' => 'moo',
),
));
$bag
->get($path, null, true);
}