/** Test of getNombre method, of class DataClient. */
 @Test
 public void testGetNombre() {
   System.out.println("getNombre");
   DataClient instance =
       new DataClient("nickname", "nombre", "apellido", null, "direccion", "*****@*****.**", "imagen");
   String expResult = "nombre";
   String result = instance.getNombre();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   // fail("The test case is a prototype.");
 }