Example #1
0
 public ExecutionRunner(string testAssemblyPath, IControllerProxy controllerProxy,
                        IExecutionAdapter adapter)
 {
     this.testAssemblyPath = testAssemblyPath;
     this.controllerProxy  = controllerProxy;
     this.adapter          = adapter;
 }
 public AsyncExecutionProcessor(
     IExecutionAdapter execAdapter,
     IJsonHttpClient jsonHttpClient,
     ILogger logger,
     IExecutionProcessorOptions processorOptions)
 {
     this.execAdapter      = execAdapter;
     this.jsonHttpClient   = jsonHttpClient;
     this.logger           = logger;
     this.processorOptions = processorOptions;
 }
Example #3
0
 public ExecutionProcessor(TAdapter execAdapter, ILogger logger, IExecutionProcessorOptions processorOptions)
 {
     this.execAdapter      = execAdapter;
     this.logger           = logger;
     this.processorOptions = processorOptions;
 }