public HtmlScenarioOutlineFormatter(
     HtmlStepFormatter htmlStepFormatter, 
     HtmlDescriptionFormatter htmlDescriptionFormatter, 
     HtmlTableFormatter htmlTableFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlStepFormatter = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlTableFormatter = htmlTableFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = XNamespace.Get("http://www.w3.org/1999/xhtml");
 }
Esempio n. 2
0
 public HtmlStepFormatter(HtmlTableFormatter htmlTableFormatter, HtmlMultilineStringFormatter htmlMultilineStringFormatter)
 {
     this.htmlTableFormatter = htmlTableFormatter;
     this.htmlMultilineStringFormatter = htmlMultilineStringFormatter;
     xmlns = XNamespace.Get("http://www.w3.org/1999/xhtml");
 }