public function testSetVoteDescriptionAndGetVoteDescription()
 {
     $this->assertSame('', $this->rfc->getVoteDescription());
     $this->rfc->setVoteDescription('Vote description');
     $this->assertSame('Vote description', $this->rfc->getVoteDescription());
 }