public void TestGetAppsWithOAuthMultipleRequest()
        {
            var requests = new List <IApps>
            {
                SoundCloudApiAuthenticated.Apps(),
                SoundCloudApiAuthenticated.Apps(),
                SoundCloudApiAuthenticated.Apps(),
            };
            var users = SoundCloudApiAuthenticated.Execute(requests);

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

            SoundCloudApiAuthenticated.ExecuteAsync(requests, AppsListBuilder);
            Completion.WaitOne(TimeSpan.FromSeconds(100));
            Assert.Greater(_asyncAppsResult.Count, 0);
        }