public void should_parse_comment_information_from_comments(string comment, string commentInfo) { CommentInformationParser parser = new CommentInformationParser(); Assert.Equal(parser.parse(comment), commentInfo); }
public string GetComment() { return(commentInformationParser.parse(GetCommentFromCommit()) as string ?? string.Empty); }