public WordScenarioOutlineFormatter(WordStepFormatter wordStepFormatter, WordTableFormatter wordTableFormatter, IConfiguration configuration, ITestResults testResults)
 {
     this.wordStepFormatter = wordStepFormatter;
     this.wordTableFormatter = wordTableFormatter;
     this.configuration = configuration;
     this.testResults = testResults;
 }
 public WordScenarioOutlineFormatter(WordStepFormatter wordStepFormatter, WordTableFormatter wordTableFormatter, Configuration configuration, ITestResults testResults)
 {
     this.wordStepFormatter  = wordStepFormatter;
     this.wordTableFormatter = wordTableFormatter;
     this.configuration      = configuration;
     this.testResults        = testResults;
 }
 public WordScenarioOutlineFormatter(WordStepFormatter wordStepFormatter, WordTableFormatter wordTableFormatter, IConfiguration configuration, ITestResults testResults, ILanguageServicesRegistry languageServicesRegistry)
 {
     this.wordStepFormatter        = wordStepFormatter;
     this.wordTableFormatter       = wordTableFormatter;
     this.configuration            = configuration;
     this.testResults              = testResults;
     this.languageServicesRegistry = languageServicesRegistry;
 }
Beispiel #4
0
 public WordStepFormatter(WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
 }
Beispiel #5
0
 public WordStepFormatter(WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
 }
 public WordBackgroundFormatter(Configuration configuration, WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageSevices    = new LanguageServices(configuration);
 }
	    public WordBackgroundFormatter(Configuration configuration, WordTableFormatter wordTableFormatter)
	    {
	        this.wordTableFormatter = wordTableFormatter;
	        this.languageSevices = new LanguageServices(configuration);
	    }
 public WordBackgroundFormatter(WordTableFormatter wordTableFormatter, ILanguageServices languageServices)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageServices = languageServices;
 }
 public WordBackgroundFormatter(WordTableFormatter wordTableFormatter, ILanguageServices languageServices)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageServices   = languageServices;
 }