public void TestGetGroupAsyncWithOAuth() { Completion = new ManualResetEvent(false); SoundCloudApiAuthenticated.Group(1).GetAsync(GroupBuilder); Completion.WaitOne(TimeSpan.FromSeconds(100)); Assert.IsNotEmpty(_asyncGroupResult.Name); }
public void TestGetGroupWithOAuthRequest() { var group = SoundCloudApiAuthenticated.Group(1).Get(); Assert.AreEqual(1, group.Id); }