Examples of TestDatabase


Examples of com.pugh.sockso.tests.TestDatabase

   
    private Command cmd;

    @Override
    public void setUp() {
        db = new TestDatabase();
        cmd = new UserList( db );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

   
    private TestDatabase db;
   
    @Override
    protected void setUp() {
        db = new TestDatabase();
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

        assertEquals( 1, artist.getId() );
        assertEquals( "My Artist", artist.getName() );
    }
   
    public void testFindReturnsNullForInvalidArtistId() throws Exception {
        assertNull( Artist.find(new TestDatabase(),123) );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

    private TestLocale locale;

    @Override
    public void setUp() {
        p = new StringProperties();
        db = new TestDatabase();
        locale = new TestLocale();
        locale.setString( "con.desc.commands", "Usage:" );
        locale.setString( "con.msg.propertySaved", "property saved" );
        cmd = new CommandExecuter( db, p, null, locale, new CommandParser() );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

   
    private Database db;
   
    @Override
    public void setUp() throws Exception {
        db = new TestDatabase();
        db.update( "insert into collection ( id, path ) values ( 1, '/foo/bar/' )" );
        db.update( "insert into collection ( id, path ) values ( 2, 'C:\\foo\\bar\\' )" );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

    @Override
    public void setUp() {
        locale = new TestLocale();
        locale.setString( "con.msg.userUpdated", "user updated" );
        locale.setString( "con.err.errorUpdatingUser", "error updating user" );
        db = new TestDatabase();
        cmd = new UserAdmin( db, locale );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

       
    }
   
    public void testGetLatestArtistsQuery() throws Exception {
       
        final Database db = new TestDatabase();
        final Latester b = new Latester();
       
        b.setProperties( new StringProperties() );
        b.setDatabase( db );
        b.getLatestArtists();
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

    @Override
    public void setUp() {
        locale = new TestLocale();
        locale.setString( "con.msg.userDeleted", "user deleted" );
        locale.setString( "con.err.errorDeletingUser", "invalid user id" );
        db = new TestDatabase();
        cmd = new UserDel( db, locale );
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

   
    private TestDatabase db;
   
    @Override
    protected void setUp() {
        db = new TestDatabase();
    }
View Full Code Here

Examples of com.pugh.sockso.tests.TestDatabase

       
    }

    public void testGetRecentlyPlayedAlbumsQuery() throws Exception {

        final Database db = new TestDatabase();
        final Homer h = new Homer();
       
        h.setDatabase( db );
        h.getRecentlyPlayedAlbums( 10 );
       
View Full Code Here
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.