@Before
public void prepareDb() throws Exception {
getTransactionManager().begin();
final EntityManager em = getFactory().createEntityManager();
song = new Song();
song.setSinger( "Jon Bovi" );
song.setTitle( "Keep the pace" );
em.persist( song );
commitOrRollback( true );
em.close();