Exemple #1
0
 protected TaggedHooksFirstExecutionProcessor(IExecutionOrchestrator executionOrchestrator,
                                              IAssemblyLoader assemblyLoader,
                                              IReflectionWrapper reflectionWrapper)
     : base(executionOrchestrator, assemblyLoader, reflectionWrapper)
 {
     Strategy = new TaggedHooksFirstStrategy();
 }
Exemple #2
0
 public ExecuteStepProcessor(IStepRegistry registry, IExecutionOrchestrator executionOrchestrator,
                             ITableFormatter tableFormatter)
 {
     _stepRegistry          = registry;
     _tableFormatter        = tableFormatter;
     _executionOrchestrator = executionOrchestrator;
 }
Exemple #3
0
 protected HookExecutionProcessor(IExecutionOrchestrator executionOrchestrator, IAssemblyLoader assemblyLoader,
                                  IReflectionWrapper reflectionWrapper)
 {
     _assemblyLoader       = assemblyLoader;
     ExecutionOrchestrator = executionOrchestrator;
     _reflectionWrapper    = reflectionWrapper;
     Strategy = new HooksStrategy();
 }
 public TestHooksExecutionProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
 }
Exemple #5
0
 protected HookExecutionProcessor(IExecutionOrchestrator executionOrchestrator)
 {
     ExecutionOrchestrator = executionOrchestrator;
     Strategy = new HooksStrategy();
 }
Exemple #6
0
 public ExecutionEndingProcessor(IExecutionOrchestrator executionOrchestrator, IAssemblyLoader assemblyLoader,
                                 IReflectionWrapper reflectionWrapper)
     : base(executionOrchestrator, assemblyLoader, reflectionWrapper)
 {
 }
 public StepExecutionEndingProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
 }
 public TestTaggedHooksFirstExecutionProcessor(IExecutionOrchestrator executionOrchestrator, IAssemblyLoader assemblyLoader,
                                               IReflectionWrapper reflectionWrapper)
     : base(executionOrchestrator, assemblyLoader, reflectionWrapper)
 {
 }
Exemple #9
0
 public ScenarioExecutionEndingProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
     _executionOrchestrator = executionOrchestrator;
 }
 public TestTaggedHooksFirstExecutionProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
 }
 protected UntaggedHooksFirstExecutionProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
     Strategy = new UntaggedHooksFirstStrategy();
 }
 public SpecExecutionStartingProcessor(IExecutionOrchestrator executionOrchestrator,
                                       IAssemblyLoader assemblyLoader, IReflectionWrapper reflectionWrapper)
     : base(executionOrchestrator, assemblyLoader, reflectionWrapper)
 {
     _executionOrchestrator = executionOrchestrator;
 }
Exemple #13
0
 public SpecExecutionStartingProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
     _executionOrchestrator = executionOrchestrator;
 }
 public ExecutionStartingProcessor(IExecutionOrchestrator executionOrchestrator)
     : base(executionOrchestrator)
 {
 }