Beispiel #1
0
 public HtmlStepFormatter(
     HtmlTableFormatter htmlTableFormatter,
     HtmlMultilineStringFormatter htmlMultilineStringFormatter)
 {
     this.htmlTableFormatter           = htmlTableFormatter;
     this.htmlMultilineStringFormatter = htmlMultilineStringFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
Beispiel #2
0
 public HtmlScenarioOutlineFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlTableFormatter htmlTableFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter,
     ITestResults testResults,
     ILanguageServicesRegistry languageServicesRegistry)
 {
     this.htmlStepFormatter        = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlTableFormatter       = htmlTableFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.testResults = testResults;
     this.languageServicesRegistry = languageServicesRegistry;
     this.xmlns = HtmlNamespace.Xhtml;
 }