public ExcelScenarioFormatter(ExcelStepFormatter excelStepFormatter,
                               Configuration configuration,
                               ITestResults testResults)
 {
     this.excelStepFormatter = excelStepFormatter;
     this.configuration      = configuration;
     this.testResults        = testResults;
 }
 public ExcelScenarioFormatter(ExcelStepFormatter excelStepFormatter, 
                               Configuration configuration, 
                               ITestResults testResults)
 {
     this.excelStepFormatter = excelStepFormatter;
     this.configuration = configuration;
     this.testResults = testResults;
 }
 public ExcelScenarioOutlineFormatter(
     ExcelStepFormatter excelStepFormatter,
     ExcelTableFormatter excelTableFormatter,
     IConfiguration configuration,
     ITestResults testResults)
 {
     this.excelStepFormatter = excelStepFormatter;
     this.excelTableFormatter = excelTableFormatter;
     this.configuration = configuration;
     this.testResults = testResults;
 }
Beispiel #4
0
 public ExcelScenarioOutlineFormatter(
     ExcelStepFormatter excelStepFormatter,
     ExcelTableFormatter excelTableFormatter,
     IConfiguration configuration,
     ITestResults testResults)
 {
     this.excelStepFormatter  = excelStepFormatter;
     this.excelTableFormatter = excelTableFormatter;
     this.configuration       = configuration;
     this.testResults         = testResults;
 }
Beispiel #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;
 }