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