public void ShouldGetComment_ById()
        {
            var comment = new Comment("Name", "Body", new Comment(), new Game(), isQuote: false);

            _mock.Setup(m => m.Comments.Get(It.IsAny <int>()))
            .Returns(comment);

            CommentDto commentDto = _service.Get(It.IsAny <int>());

            Assert.IsTrue(commentDto.Equals(comment.ToDto()));
        }