public void MapDTOToComment_ShouldReturnEmptyCountryIfFailed()
        {
            //Arrange
            //Act
            var sut = CommentMapper.MapDTOToComment(null);

            //Assert
            Assert.AreEqual(sut.ID, null);
            Assert.AreEqual(sut.Description, null);
            Assert.AreEqual(sut.Review, null);
            Assert.AreEqual(sut.User, null);
            Assert.AreEqual(sut.CreatedOn, default);
            Assert.AreEqual(sut.ModifiedOn, null);
            Assert.AreEqual(sut.DeletedOn, null);
            Assert.AreEqual(sut.IsDeleted, false);
        }