System.out.println(p.getDescripcion().equalsIgnoreCase("diego"));
System.out.println(((Prueba2)p.getPrueba2().get(1)).getNombre().equalsIgnoreCase("gato2"));
}
public void testSaveObtainModifyCompoundCollection(){
District d1 = new District("collectionModify1");
Address a1 = new Address("collectionModify", d1);
District d2 = new District("collectionModify2");
Address a2 = new Address("collectionModify", d2);
ArrayList array = new ArrayList();
array.add(a1);
array.add(a2);