Beispiel #1
0
        public async void EnsureAsyncGetMixGroupsReturnsItems()
        {
            // Only test happy path, as the MusicClient tests cover the unhappy path
            IMusicClientAsync client = new MusicClientAsync("test", "test", "gb", new MockApiRequestHandler(Resources.mixgroups));

            ListResponse<MixGroup> result = await client.GetMixGroups();
            Assert.Greater(result.Result.Count, 0, "Expected more than 0 results");
        }