public void should_parse_story_information_from_comments(string comment, string storyinfo)
        {
            StoryInformationParser parser = new StoryInformationParser();

            parser.parse(comment);
            Assert.Equal(parser.parse(comment), storyinfo);
        }
Example #2
0
 public GitLogAnalysis()
 {
     devInformationParser     = new DevInformationParser();
     storyInformationParser   = new StoryInformationParser();
     commentInformationParser = new CommentInformationParser();
     testFilesParser          = new TestFilesParser();
 }