// this is mostly for legacy schemas, as on many dbs you won;t be able to even
// create the FK constraint...
createTestDataSet();
FkOfDifferentType root = Cayenne.objectForPK(
context,
FkOfDifferentType.class,
1);
assertNotNull(root);
assertNotNull(root.getRelationshipHelper());
assertEquals("RH1", root.getRelationshipHelper().getName());
}