// uncomment when cmp to cmr is supported
public void TODO_testSetCMPMappedToForeignKeyColumn() throws Exception {
resetDB();
beginTransaction();
try {
SongLocal song = findSong(11);
song.setBpm(2);
ArtistLocal artist = song.getPerformer();
assertEquals(new Integer(2), artist.getId());
assertEquals("value2", artist.getName());
} finally {
completeTransaction();
}