@Test(expected = IllegalArgumentException.class)
 public void setIdentification_Null() {
   Identification identification = null;
   test.setIdentification(identification);
 }
 @Test
 public void setIdentification() {
   test.setIdentification(IDENTIFICATION);
 }