commit(Void.class, new Store(domain));
DOMAIN stored = commit(new Get(domain.getId()));
stored = updateDomainObject(stored);
stored = commit(new Get(domain.getId()));
Timestampable timed = (Timestampable)stored;
Assert.assertNotNull(timed.getCreated());
Assert.assertNotSame(timed.getCreated(), timed.getLastModified());
}