/// <summary>
 ///     Creates an article for the remarks
 /// </summary>
 /// <param name="aReportConfig"></param>
 public void CreateCommentsArticle(FindingsReportHandler aReportConfig)
 {
     AddSubParagraph("Comments for Subset-076");
     AddParagraph("This section contains the " +
                  getSection("Comments", aReportConfig.Dictionary).SubParagraphs.Count +
                  " comments for the Subset-076 test sequences. " +
                  "Comments are findings that are minor bugs, that could be assumptions the ERTMS Solutions team is not aware of, or information we feel is worth sharing in the present document.");
     GenerateComments(aReportConfig.Dictionary);
     CloseSubParagraph();
 }
 /// <summary>
 ///     Creates an article for the bugs
 /// </summary>
 /// <param name="aReportConfig"></param>
 public void CreateIssuesArticle(FindingsReportHandler aReportConfig)
 {
     AddSubParagraph("Issues for Subset-076");
     AddParagraph("This section contains the " + getSection("Bugs", aReportConfig.Dictionary).SubParagraphs.Count +
                  " discovered issues for the Subset-076 test sequences");
     AddParagraph(
         "These are the findings that are errors in the test sequences. They prevent execution of the test sequence.");
     GenerateIssues(aReportConfig.Dictionary);
     CloseSubParagraph();
 }
 /// <summary>
 ///     Creates an article for the questions
 /// </summary>
 /// <param name="aReportConfig"></param>
 public void CreateQuestionsArticle(FindingsReportHandler aReportConfig)
 {
     AddSubParagraph("Questions related to Subset-076");
     AddParagraph("This section contains the " +
                  getSection("Questions", aReportConfig.Dictionary).SubParagraphs.Count +
                  " questions raised in translating the Subset-076 test sequences.");
     GenerateQuestions(aReportConfig.Dictionary);
     CloseSubParagraph();
 }
 /// <summary>
 ///     Constructor
 /// </summary>
 /// <param name="dictionary"></param>
 public FindingsReport(Dictionary dictionary)
 {
     InitializeComponent();
     _reportHandler = new FindingsReportHandler(dictionary);
     TxtB_Path.Text = _reportHandler.FileName;
 }