Package net.pterodactylus.sone.data

Examples of net.pterodactylus.sone.data.AlbumImpl


public class AlbumBuilderImpl extends AbstractAlbumBuilder {

  @Override
  public Album build() throws IllegalStateException {
    validate();
    return randomId ? new AlbumImpl() : new AlbumImpl(id);
  }
View Full Code Here


  private final MemoryDatabase memoryDatabase = new MemoryDatabase(null, null);

  @Test
  public void testBasicAlbumFunctionality() {
    Album newAlbum = new AlbumImpl();
    assertThat(memoryDatabase.getAlbum(newAlbum.getId()), is(Optional.<Album>absent()));
    memoryDatabase.storeAlbum(newAlbum);
    assertThat(memoryDatabase.getAlbum(newAlbum.getId()), is(of(newAlbum)));
    memoryDatabase.removeAlbum(newAlbum);
    assertThat(memoryDatabase.getAlbum(newAlbum.getId()), is(Optional.<Album>absent()));
  }
View Full Code Here

TOP

Related Classes of net.pterodactylus.sone.data.AlbumImpl

Copyright © 2018 www.massapicom. 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.