Esempio n. 1
0
        public async Task GetComments()
        {
            var commentsService = new CommentsService(BaseUri, HttpClient);
            var comments        = await commentsService.GetCommentsByArticleAsync(5);

            Assert.IsTrue(comments.Any());
        }