public async void EnsureAsyncGetArtistProductsReturnsItems()
 {
     // Only test happy path, as the MusicClient tests cover the unhappy path
     IMusicClientAsync client = new MusicClientAsync("test", "test", "gb", new SuccessfulMockApiRequestHandler());
     this.ProductResponse(await client.GetArtistProducts("test"));
     this.ProductResponse(await client.GetArtistProducts(new Artist() { Id = "test" }));
 }