SmallintTestEntity object = (SmallintTestEntity) objects.get(0);
assertEquals(new Short("9999"), object.getSmallintCol());
}
public void testShortInInsert() throws Exception {
SmallintTestEntity object = (SmallintTestEntity) context
.newObject("SmallintTestEntity");
object.setSmallintCol(new Short("1"));
context.commitChanges();
}