public function testSetAndGetValue()
 {
     $this->assertEquals(null, $this->object->getValue());
     $val = 'new ret val';
     $this->object->setValue($val);
     $this->assertEquals($val, $this->object->getValue());
 }