public void testObjectsWithCollectionIntuitive(){
Pruebas p = new Pruebas();
p.setDescripcion("diego");
ArrayList<Prueba2> arrayP = new ArrayList<Prueba2>();
Prueba2 p1 = new Prueba2();
p1.setNombre("gato1");
Prueba2 p2 = new Prueba2();
p2.setNombre("gato2");
arrayP.add(p1);
arrayP.add(p2);
p.setPrueba2(arrayP);