public void Setup()
  {
    this.formatter = new HtmlScenarioFormatter(
      Kernel.Get<HtmlStepFormatter>(),
      Kernel.Get<HtmlDescriptionFormatter>(),
      Kernel.Get<HtmlImageResultFormatter>());
  }
Пример #2
0
 public HtmlFeatureFormatter(
     HtmlScenarioFormatter htmlScenarioFormatter, 
     HtmlDescriptionFormatter htmlDescriptionFormatter, 
     HtmlScenarioOutlineFormatter htmlScenarioOutlineFormatter, 
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlScenarioFormatter = htmlScenarioFormatter;
     this.htmlScenarioOutlineFormatter = htmlScenarioOutlineFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
Пример #3
0
 public HtmlFeatureFormatter(
     HtmlScenarioFormatter htmlScenarioFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlScenarioOutlineFormatter htmlScenarioOutlineFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlScenarioFormatter        = htmlScenarioFormatter;
     this.htmlScenarioOutlineFormatter = htmlScenarioOutlineFormatter;
     this.htmlDescriptionFormatter     = htmlDescriptionFormatter;
     this.htmlImageResultFormatter     = htmlImageResultFormatter;
     xmlns = HtmlNamespace.Xhtml;
 }