Example #1
0
 public ExcelStepFormatter(
     ExcelTableFormatter excelTableFormatter,
     ExcelDocumentStringFormatter excelDocumentStringFormatter)
 {
     this.excelTableFormatter          = excelTableFormatter;
     this.excelDocumentStringFormatter = excelDocumentStringFormatter;
 }
Example #2
0
 public ExcelStepFormatter(
     ExcelTableFormatter excelTableFormatter,
     ExcelDocumentStringFormatter excelDocumentStringFormatter)
 {
     this.excelTableFormatter = excelTableFormatter;
     this.excelDocumentStringFormatter = excelDocumentStringFormatter;
 }
 public ExcelScenarioOutlineFormatter(ExcelStepFormatter excelStepFormatter,
                                      ExcelTableFormatter excelTableFormatter,
                                      Configuration configuration, 
                                      ITestResults testResults)
 {
     this.excelStepFormatter = excelStepFormatter;
     this.excelTableFormatter = excelTableFormatter;
     this.configuration = configuration;
     this.testResults = testResults;
 }
 public ExcelScenarioOutlineFormatter(ExcelStepFormatter excelStepFormatter,
                                      ExcelTableFormatter excelTableFormatter,
                                      Configuration configuration,
                                      ITestResults testResults)
 {
     this.excelStepFormatter  = excelStepFormatter;
     this.excelTableFormatter = excelTableFormatter;
     this.configuration       = configuration;
     this.testResults         = testResults;
 }
Example #5
0
 public ExcelScenarioOutlineFormatter(
     ExcelStepFormatter excelStepFormatter,
     ExcelTableFormatter excelTableFormatter,
     IConfiguration configuration,
     ITestResults testResults,
     ILanguageServicesRegistry languageServicesRegistry)
 {
     this.excelStepFormatter       = excelStepFormatter;
     this.excelTableFormatter      = excelTableFormatter;
     this.configuration            = configuration;
     this.testResults              = testResults;
     this.languageServicesRegistry = languageServicesRegistry;
 }