Exemple #1
0
        public void TestGetCommentMultipleRequests()
        {
            var resourceList = new List <IComment>
            {
                SoundCloudApiUnAuthenticated.Comment(13685794),
                SoundCloudApiUnAuthenticated.Comment(13685794),
                SoundCloudApiUnAuthenticated.Comment(13685794),
            };

            var comments = SoundCloudApiUnAuthenticated.Execute(resourceList);

            Assert.AreEqual(3, comments.Count);
        }
Exemple #2
0
        public void TestGetCommentRequest()
        {
            var comment = SoundCloudApiUnAuthenticated.Comment(13685794).Get();

            Assert.AreEqual(13685794, comment.Id);
        }