コード例 #1
0
 public WordScenarioOutlineFormatter(WordStepFormatter wordStepFormatter, WordTableFormatter wordTableFormatter, IConfiguration configuration, ITestResults testResults)
 {
     this.wordStepFormatter = wordStepFormatter;
     this.wordTableFormatter = wordTableFormatter;
     this.configuration = configuration;
     this.testResults = testResults;
 }
コード例 #2
0
 public WordScenarioOutlineFormatter(WordStepFormatter wordStepFormatter, WordTableFormatter wordTableFormatter, Configuration configuration, ITestResults testResults)
 {
     this.wordStepFormatter  = wordStepFormatter;
     this.wordTableFormatter = wordTableFormatter;
     this.configuration      = configuration;
     this.testResults        = testResults;
 }
コード例 #3
0
 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;
 }
コード例 #4
0
ファイル: WordStepFormatter.cs プロジェクト: vavavivi/pickles
 public WordStepFormatter(WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
 }
コード例 #5
0
ファイル: WordStepFormatter.cs プロジェクト: ngm/pickles
 public WordStepFormatter(WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
 }
コード例 #6
0
 public WordBackgroundFormatter(Configuration configuration, WordTableFormatter wordTableFormatter)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageSevices    = new LanguageServices(configuration);
 }
コード例 #7
0
	    public WordBackgroundFormatter(Configuration configuration, WordTableFormatter wordTableFormatter)
	    {
	        this.wordTableFormatter = wordTableFormatter;
	        this.languageSevices = new LanguageServices(configuration);
	    }
コード例 #8
0
 public WordBackgroundFormatter(WordTableFormatter wordTableFormatter, ILanguageServices languageServices)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageServices = languageServices;
 }
コード例 #9
0
 public WordBackgroundFormatter(WordTableFormatter wordTableFormatter, ILanguageServices languageServices)
 {
     this.wordTableFormatter = wordTableFormatter;
     this.languageServices   = languageServices;
 }