public void Given_commentId_When_BuildReportCommentViewModel_Returns_ReportCommentViewModel()
        {
            //Given
            var commentId  = 1;
            var callbackId = 2;
            //When
            var result = _postBuilder.BuildReportCommentViewModel(commentId, callbackId);

            //Then
            Assert.NotNull(result);
            Assert.IsInstanceOf <ReportCommentViewModel>(result);
            Assert.AreEqual(callbackId, result.CallbackPostId);
            Assert.AreEqual(commentId, result.CommentId);
        }