コード例 #1
0
 public MultiSourceTestDiscovererFactory(
     IBinaryTestDiscoverer binaryTestDiscoverer,
     ITestCaseMapper testCaseMapper,
     ISettingsRepository settingsRepository,
     ILoggerFactory loggerFactory)
 {
     this.binaryTestDiscoverer = binaryTestDiscoverer;
     this.testCaseMapper       = testCaseMapper;
     this.settingsRepository   = settingsRepository;
     this.loggerFactory        = loggerFactory;
 }
コード例 #2
0
 public MultiSourceTestDiscoverer(IEnumerable <string> sources,
                                  IBinaryTestDiscoverer binaryTestDiscoverer,
                                  ITestCaseMapper testCaseMapper,
                                  ISettingsRepository settingsRepository,
                                  ILoggerFactory loggerFactory)
 {
     this.sources = sources;
     this.binaryTestDiscoverer = binaryTestDiscoverer;
     this.testCaseMapper       = testCaseMapper;
     this.settingsRepository   = settingsRepository;
     this.loggerFactory        = loggerFactory;
 }