コード例 #1
0
        public void should_parse_comment_information_from_comments(string comment, string commentInfo)
        {
            CommentInformationParser parser = new CommentInformationParser();

            Assert.Equal(parser.parse(comment), commentInfo);
        }
コード例 #2
0
ファイル: GitLogAnalysis.cs プロジェクト: Tri-Color/Tri-Color
 public string GetComment()
 {
     return(commentInformationParser.parse(GetCommentFromCommit()) as string ?? string.Empty);
 }