public OutOfProcessTestGenerator(Info info, ProjectSettings projectSettings)
 {
     _projectSettings      = projectSettings;
     _outOfProcessExecutor = new OutOfProcessExecutor(info);
 }
Exemplo n.º 2
0
 public OutOfProcessTestGenerator(Info info, ProjectSettings projectSettings, IntegrationOptions integrationOptions)
 {
     _projectSettings      = projectSettings;
     _integrationOptions   = integrationOptions;
     _outOfProcessExecutor = new OutOfProcessExecutor(info, integrationOptions);
 }
 public OutOfProcessTestGeneratorFactory(IntegrationOptions integrationOptions)
 {
     _integrationOptions   = integrationOptions;
     _outOfProcessExecutor = new OutOfProcessExecutor(_info, integrationOptions);
 }
 public OutOfProcessTestGeneratorFactory(IIdeTracer tracer, IntegrationOptions integrationOptions)
 {
     _tracer               = tracer;
     _integrationOptions   = integrationOptions;
     _outOfProcessExecutor = new OutOfProcessExecutor(_info, integrationOptions);
 }
Exemplo n.º 5
0
 public OutOfProcessTestGeneratorFactory(IIdeTracer tracer)
 {
     _tracer = tracer;
     _outOfProcessExecutor = new OutOfProcessExecutor(_info);
 }