Ejemplo n.º 1
0
 public DirectoryFinder(TempestConfiguration configuration)
 {
     if (configuration == null)
     {
         throw new ArgumentNullException(nameof(configuration));
     }
     _configuration = configuration;
 }
Ejemplo n.º 2
0
 public GeneratorFinder(ITempestAssemblyLoader tempestAssemblyLoader, TempestConfiguration configuration)
 {
     if (tempestAssemblyLoader == null)
     {
         throw new ArgumentNullException(nameof(tempestAssemblyLoader));
     }
     if (configuration == null)
     {
         throw new ArgumentNullException(nameof(configuration));
     }
     _tempestAssemblyLoader = tempestAssemblyLoader;
     _configuration         = configuration;
 }