new EJBQLQuery("select count(a) from Gallery a"));
assertEquals(0, galleryCount.intValue());
}
public void testUpdate() {
CompoundPainting o1 = context.newObject(CompoundPainting.class);
o1.setArtistName("A1");
o1.setEstimatedPrice(new BigDecimal(1d));
o1.setGalleryName("G1");
o1.setPaintingTitle("P1");
o1.setTextReview("T1");
context.commitChanges();
o1.setArtistName("X1");
o1.setEstimatedPrice(new BigDecimal(2d));
o1.setGalleryName("X1");
o1.setPaintingTitle("X1");
o1.setTextReview("X1");
context.commitChanges();
}