}
@Test
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%'");
Assert.assertTrue((results.size() >= 3));
}