コード例 #1
0
        public async Task GetAllAlbumsSparse()
        {
            var resp = await _client.GetAllAlbumsSparse();

            Assert.IsTrue(resp.HasValue);
            var albums = resp.Value.ToList();

            Assert.NotNull(albums);
            Assert.IsNotEmpty(albums);
        }