コード例 #1
0
 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");
 }
コード例 #2
0
ファイル: HtmlStepFormatter.cs プロジェクト: MikeEast/pickles
 public HtmlStepFormatter(HtmlTableFormatter htmlTableFormatter, HtmlMultilineStringFormatter htmlMultilineStringFormatter)
 {
     this.htmlTableFormatter = htmlTableFormatter;
     this.htmlMultilineStringFormatter = htmlMultilineStringFormatter;
     xmlns = XNamespace.Get("http://www.w3.org/1999/xhtml");
 }