public ScenarioReportingContext(
     IList<string> featureReport,
     IList<string> scenarioReport,
     IList<string> stepReport,
     GherkinTestFrameworkSettingsFacade settings)
 {
     FeatureReport = featureReport;
     ScenarioReport = scenarioReport;
     StepReport = stepReport;
     Settings = settings;
 }
 public void When()
 {
     _settings = GherkinTestFrameworkSettingsFacade.GetInstance();
 }