/**
  */
 public function testValue()
 {
     $this->assertEquals("testValue", $this->object->getValue());
     $this->object->setValue("newValue");
     $this->assertEquals("newValue", $this->object->getValue());
 }