Package com.pugh.sockso.gui

Source Code of com.pugh.sockso.gui.PlaylistPanelTest

package com.pugh.sockso.gui;

import com.pugh.sockso.tests.SocksoTestCase;
import com.pugh.sockso.tests.TestDatabase;

public class PlaylistPanelTest extends SocksoTestCase {

    public void testCheckingPlaylistExists() throws Exception {
        TestDatabase db = new TestDatabase();
        PlaylistPanel p = new PlaylistPanel( null, db, null );
        db.fixture( "singlePlaylist" );
        assertTrue( p.playlistExists("Foo Bar") );
        assertFalse( p.playlistExists("Bar Foo") );
    }
   
}
TOP

Related Classes of com.pugh.sockso.gui.PlaylistPanelTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.