System.out.println(5 == ((Page)b.getPage().get(1)).getPageNumber());
}
public void testObtainAll(){
ArrayList array = new ArrayList();
array.add(new Prueba("obtainAll1"));
array.add(new Prueba("obtainAll2"));
array.add(new Prueba("obtainAll3"));
admin.saveAll(array);
ArrayList results = admin.obtainAll(Prueba.class, "name like 'obtainAll%'");
System.out.println((results.size() >= 3));
}