public void Setup()
 {
     SUT = new ChapterParser();
 }
 public void Teardown()
 {
     SUT = null;
 }
 public ChapterParserTest()
 {
     _sectionParser = new ChapterParser(new ParserFactory());
 }