Exemplo n.º 1
0
 public void TestGetGroupAsyncWithOAuth()
 {
     Completion = new ManualResetEvent(false);
     SoundCloudApiAuthenticated.Group(1).GetAsync(GroupBuilder);
     Completion.WaitOne(TimeSpan.FromSeconds(100));
     Assert.IsNotEmpty(_asyncGroupResult.Name);
 }
Exemplo n.º 2
0
        public void TestGetGroupWithOAuthRequest()
        {
            var group = SoundCloudApiAuthenticated.Group(1).Get();

            Assert.AreEqual(1, group.Id);
        }