public void testSearchForArtist() throws Exception {
   Spotify model = new Spotify();
   List<Artist> results = model.searchForArtist("Maroon 5");
   assertNotNull(results);
 }