public void TestGetTrackAsyncUsingOAuthRequest()
 {
     Completion = new ManualResetEvent(false);
     SoundCloudApiAuthenticated.Track(TrackId).GetAsync(TrackBuilder);
     Completion.WaitOne(TimeSpan.FromSeconds(100));
     Assert.AreEqual(TrackId, _asyncTrackResult.Id);
 }
        public void TestPutTrackUpdateDescription()
        {
            var t = SoundCloudApiAuthenticated.Track(TrackId).Get();

            t.Description = "Here is a new description 3";
            SoundCloudApiAuthenticated.Track(TrackId).Put(t);
            var x = SoundCloudApiAuthenticated.Track(TrackId).Get();

            Assert.AreEqual("Here is a new description 3", x.Description);
            SoundCloudApiAuthenticated.Track(TrackId).Put(new Track {
                Description = String.Empty
            });
        }
        public void TestGetTrackUsingOAuthRequest()
        {
            var track = SoundCloudApiAuthenticated.Track(TrackId).Get();

            Assert.AreEqual(TrackId, track.Id);
        }