expect( st.executeQuery() ).andReturn( rs ).times( 1 );
st.close();
replay( st );
final Database db = createMock( Database.class );
expect( db.prepare((String)anyObject()) ).andReturn( st ).times( 1 );
replay( db );
final File playlistFile = new File( "myPlaylist.m3u" );
final ImportPlaylist ip = new ImportPlaylist( null, db, null, null, new TestLocale() );