/**
  */
 public function testSetName()
 {
     $this->assertEquals("test", $this->object->getName());
     $this->object->setName("otherName");
     $this->assertEquals("otherName", $this->object->getName());
 }