public async void EnsureAsyncGetArtistsAroundLocationReturnsItems()
 {
     // Only test happy path, as the MusicClient tests cover the unhappy path
     IMusicClientAsync client = new MusicClientAsync("test", "test", "gb", new MockApiRequestHandler(Resources.search_artists));
     ListResponse<Artist> result = await client.GetArtistsAroundLocation(51.45534, -2.59239);
     Assert.Greater(result.Result.Count, 0, "Expected more than 0 results");
 }