public void TestGetGroupMultipleRequests() { var resourceList = new List <IGroup> { SoundCloudApiUnAuthenticated.Group(1), SoundCloudApiUnAuthenticated.Group(1), SoundCloudApiUnAuthenticated.Group(1), }; var groups = SoundCloudApiUnAuthenticated.Execute(resourceList); Assert.AreEqual(3, groups.Count); }
public void TestGetGroupRequest() { var group = SoundCloudApiUnAuthenticated.Group(1).Get(); Assert.AreEqual(1, group.Id); }