public void convert_work_item_communication_to_work_item_comment_model()
        {
            var workItemCommunication         = Any.Communication();
            var convertedWorkItemCommentModel = workItemCommunication.MapCommunicationToWorkItemCommentModel();

            Assert.Equal(workItemCommunication.WorkItemId, convertedWorkItemCommentModel.WorkItemId);
            Assert.Equal(workItemCommunication.CommunicationId, convertedWorkItemCommentModel.CommentId);
            Assert.Equal(workItemCommunication.CreatedByUserName, convertedWorkItemCommentModel.CreatedByUserName);
            Assert.Equal(workItemCommunication.CreatedDate, convertedWorkItemCommentModel.CreatedDate);
            Assert.Equal(workItemCommunication.Details, convertedWorkItemCommentModel.Details);
        }