Blog.Services.Implementation.Tests.CommentLikesServiceTest.ShouldAddCommentLikeSuccessfullyEndToEnd C# (CSharp) Method

ShouldAddCommentLikeSuccessfullyEndToEnd() private method

private ShouldAddCommentLikeSuccessfullyEndToEnd ( ) : void
return void
        public void ShouldAddCommentLikeSuccessfullyEndToEnd()
        {
            _commentsLogic = new Mock<ICommentsLogic>();
            _commentsLogic.Setup(a => a.Get(It.IsAny<int>())).Returns(new Comment { Id = 1, PostId = 1 });

            _commentLikesLogic = new Mock<ICommentLikesLogic>();
            _commentLikesLogic.Setup(a => a.Get(It.IsAny<int>())).Returns(_commentLikes);
            _commentLikesLogic.Setup(a => a.Add(It.IsAny<CommentLike>()))
                .Returns(new CommentLike { CommentLikeId = 1, CommentId = 1 });

            var redisService = new RedisService(new ConfigurationHelper());

            var commentLikesService = new CommentLikesService(_commentLikesLogic.Object, _commentsLogic.Object, redisService);

            Assert.DoesNotThrow(() => commentLikesService.Add(new CommentLike { CommentLikeId = 1, CommentId = 1 }));
        }