getValue() public method

public getValue ( )
 /**
  * @dataProvider getDataForValidationSuccess
  */
 public function testValidationSuccess($options, $value, $expected = null)
 {
     if (func_num_args() == 2) {
         $expected = $value;
     }
     $ir = new InformationRequest('foo', $options);
     $ir->setValue($value);
     $this->assertEquals($expected, $ir->getValue());
 }