public function testConstructWithGender()
 {
     $persona = new Persona(Persona::GENDER_MALE);
     $this->assertEquals(Persona::GENDER_MALE, $persona->getGender());
     $this->setExpectedException(LogicException::class);
     $persona->setGender(Persona::GENDER_FEMALE);
 }