use of com.github.hakko.musiccabinet.domain.model.library.LastFmGroup in project musiccabinet by hakko.
the class GroupWeeklyArtistChartServiceTest method canInvokeService.
@Test
public void canInvokeService() throws ApplicationException {
GroupWeeklyArtistChart artistChart = service.getWeeklyArtistChart(new LastFmGroup("group name"));
Assert.assertNotNull(artistChart);
Assert.assertEquals(0, artistChart.getArtistPlayCounts().size());
}
Aggregations