public void TestGetGroupsWithOAuthMultipleRequest()
        {
            var requests = new List <IGroups>
            {
                SoundCloudApiAuthenticated.Groups(),
                SoundCloudApiAuthenticated.Groups(),
                SoundCloudApiAuthenticated.Groups(),
            };
            var users = SoundCloudApiAuthenticated.Execute(requests);

            Assert.Greater(users.Count, 0);
        }
        public void TestGetGroupsAsyncMultipleRequest()
        {
            Completion = new ManualResetEvent(false);
            var requests = new List <IGroups>
            {
                SoundCloudApiAuthenticated.Groups(),
                SoundCloudApiAuthenticated.Groups(),
                SoundCloudApiAuthenticated.Groups(),
            };

            SoundCloudApiAuthenticated.ExecuteAsync(requests, GroupsListBuilder);
            Assert.Greater(_asyncGroupsResult.Count, 0);
        }