public void testUUIDMeaningfulPkSelect() throws Exception {
UUID id = UUID.randomUUID();
uuidPkEntity.insert(id.toString());
UuidPkEntity o1 = Cayenne.objectForPK(context, UuidPkEntity.class, id);
assertNotNull(o1);
assertEquals(id, o1.getId());
assertEquals(id, o1.getObjectId().getIdSnapshot().get("ID"));
}