getValue() public method

Return property value
public getValue ( ) : mixed
return mixed
Example #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetValue()
 {
     $this->assertEquals('', $this->object->getValue());
     $this->object->setValue('string');
     $this->assertEquals('string', $this->object->getValue());
 }