/** Test of edit method, of class PersonFacadeImpl. */
 @Test
 public void testEdit() {
   when(personDao.findById(personDTO.getId())).thenReturn(person);
   personFacade.editPerson(personDTO);
 }