Examples of ArtistQueryClient


Examples of com.github.hakko.musiccabinet.ws.musicbrainz.ArtistQueryClient

    assertEquals("Switchblade / Cult of Luna", albums.get(0).getTitle());
    assertEquals("Bodies / Recluse", albums.get(1).getTitle());
  }
 
  private ArtistQueryClient getArtistQueryClient() throws ApplicationException {
    ArtistQueryClient client = Mockito.mock(ArtistQueryClient.class);
   
    Mockito.when(client.get(artistName)).thenReturn(
        new ResourceUtil("musicbrainz/xml/artistQuery.xml").getContent());
     
    return client;
  }
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.