// todo enable these when field to fk is implemented
public void Xtest13_SetCMPMappedToForeignKeyColumn() throws Exception {
resetDB();
beginTransaction();
try {
final LicenseLocal license = findLicense(11);
license.setPoints(new Integer(2));
final PersonLocal person = license.getPerson();
assertEquals(new Integer(2), person.getId());
assertEquals("value2", person.getName());
} finally {
completeTransaction();
}