Beispiel #1
0
 public GitLogAnalysis()
 {
     devInformationParser     = new DevInformationParser();
     storyInformationParser   = new StoryInformationParser();
     commentInformationParser = new CommentInformationParser();
     testFilesParser          = new TestFilesParser();
 }
        public void should_parse_comment_information_from_comments(string comment, string commentInfo)
        {
            CommentInformationParser parser = new CommentInformationParser();

            Assert.Equal(parser.parse(comment), commentInfo);
        }