public void TestGetTracksWithOAuthMultipleRequest()
        {
            var requests = new List <ITracks>
            {
                SoundCloudApiAuthenticated.Tracks(),
                SoundCloudApiAuthenticated.Tracks(),
                SoundCloudApiAuthenticated.Tracks(),
            };
            var users = SoundCloudApiAuthenticated.Execute(requests);

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

            SoundCloudApiAuthenticated.ExecuteAsync(requests, TrackListBuilder);
            Assert.Greater(_asyncTracksResult.Count, 0);
        }
        public void TestGetTracksWithSearchUsingOAuthRequest()
        {
            var tracks = SoundCloudApiAuthenticated.Tracks().Search("Owl").Get();

            Assert.Greater(tracks.Count, 0);
        }