9101112131415161718192021222324
public class TestInheritExposeDtype extends BaseTestCase { @Test public void test() { IXPhoto p = new IXPhoto(); p.setName("the name"); Ebean.save(p); // update p.setName("new name"); Ebean.save(p); // delete Ebean.delete(p);