public void test01_BGetAExistingAB() throws Exception {
resetDB();
beginTransaction();
try {
SongLocal song = findSong(11);
ArtistLocal artist = song.getPerformer();
assertNotNull(artist);
assertEquals(new Integer(1), artist.getId());
assertEquals("value1", artist.getName());
song = findSong(22);
artist = song.getPerformer();
assertNotNull(artist);
assertEquals(new Integer(1), artist.getId());
assertEquals("value1", artist.getName());
} finally {
completeTransaction();
}
}