コード例 #1
0
 public HtmlScenarioFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlStepFormatter = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
コード例 #2
0
 public HtmlScenarioFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlStepFormatter        = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
コード例 #3
0
 public HtmlScenarioOutlineFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlTableFormatter htmlTableFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter,
     ITestResults testResults)
 {
     this.htmlStepFormatter        = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlTableFormatter       = htmlTableFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.testResults = testResults;
     this.xmlns       = HtmlNamespace.Xhtml;
 }
コード例 #4
0
 public HtmlScenarioOutlineFormatter(
     HtmlStepFormatter htmlStepFormatter,
     HtmlDescriptionFormatter htmlDescriptionFormatter,
     HtmlTableFormatter htmlTableFormatter,
     HtmlImageResultFormatter htmlImageResultFormatter,
     ITestResults testResults)
 {
     this.htmlStepFormatter = htmlStepFormatter;
     this.htmlDescriptionFormatter = htmlDescriptionFormatter;
     this.htmlTableFormatter = htmlTableFormatter;
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.testResults = testResults;
     this.xmlns = HtmlNamespace.Xhtml;
 }
コード例 #5
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;
 }
コード例 #6
0
 public HtmlTableOfContentsFormatter(HtmlImageResultFormatter imageResultFormatter, IFileSystem fileSystem)
 {
     this.imageResultFormatter = imageResultFormatter;
     this.fileSystem           = fileSystem;
 }
コード例 #7
0
 public HtmlTableOfContentsFormatter(HtmlImageResultFormatter imageResultFormatter, IFileSystem fileSystem)
 {
     this.imageResultFormatter = imageResultFormatter;
     this.fileSystem = fileSystem;
 }
コード例 #8
0
ファイル: HtmlTableFormatter.cs プロジェクト: rdasan/pickles
 public HtmlTableFormatter(HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }
コード例 #9
0
 public HtmlTableFormatter(HtmlImageResultFormatter htmlImageResultFormatter)
 {
     this.htmlImageResultFormatter = htmlImageResultFormatter;
     this.xmlns = HtmlNamespace.Xhtml;
 }