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

ShouldAddCommentLikeSuccessfully() private method

private ShouldAddCommentLikeSuccessfully ( ) : void
return void
        public void ShouldAddCommentLikeSuccessfully()
        {
            _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});
            
            _redisService = new Mock<IRedisService>();
            _redisService.Setup(a => a.Publish(It.IsAny<object>()));

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

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