public function testGetValueNoArgument()
 {
     $this->parameter->setValue(StringNode::fromValue('har'));
     $path = new PathUtility('foo/%node');
     $binding = new ParameterBinding($path, $this->parameter);
     $this->assertEquals('har', $binding->getValue());
 }