public HtmlScenarioFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlStepFormatter        = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     xmlns = HtmlNamespace.Xhtml;
 }
 public HtmlScenarioFormatter(
     HtmlStepFormatter htmlStepFormatter, 
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlStepFormatter = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
Esempio n. 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;
 }