public void testIteratorConcurrentModification() throws Exception {
resetDB();
beginTransaction();
try {
ArtistLocal artist = findArtist(new Integer(1));
SongLocal song = findSong(new Integer(11));
Set songs = artist.getComposed();
assertFalse(songs.isEmpty());
assertEquals(2, songs.size());
Iterator iterator = songs.iterator();