public void TestGetAppAsyncWithOAuth()
 {
     Completion = new ManualResetEvent(false);
     SoundCloudApiAuthenticated.App(69118).GetAsync(CommentBuilder);
     Completion.WaitOne(TimeSpan.FromSeconds(100));
     Assert.IsNotEmpty(_asyncAppResult.Name);
 }
        public void TestGetAppWithOAuthRequest()
        {
            var app = SoundCloudApiAuthenticated.App(69118).Get();

            Assert.AreEqual(69118, app.Id);
        }