Exemplo n.º 1
0
 public ProjectSteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectCompiler = projectCompiler;
     _hooksDriver = hooksDriver;
     this.projectGenerator = projectGenerator;
 }
Exemplo n.º 2
0
 public ReportingSteps(InputProjectDriver inputProjectDriver, ProjectSteps projectSteps, SpecFlowConfigurationDriver specFlowConfigurationDriver, ExecutionSteps executionSteps, ReportInfo reportInfo)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.reportInfo = reportInfo;
     this.executionSteps = executionSteps;
     this.projectSteps = projectSteps;
     this.specFlowConfigurationDriver = specFlowConfigurationDriver;
 }
Exemplo n.º 3
0
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog = new Lazy<string>(() =>
     {
         EnsureInitialized();
         return File.ReadAllText(HookLogPath);
     });
 }
Exemplo n.º 4
0
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog     = new Lazy <string>(() =>
     {
         EnsureInitialized();
         return(File.ReadAllText(HookLogPath));
     });
 }
Exemplo n.º 5
0
 public TestFileSteps(TestFileManager testFileManager, ParserDriver parserDriver, InputProjectDriver inputProjectDriver)
 {
     this.testFileManager = testFileManager;
     this.inputProjectDriver = inputProjectDriver;
     this.parserDriver = parserDriver;
 }
 protected NUnitTestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.InputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
 public MsTestTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult, VisualStudioFinder visualStudioFinder)
 {
     this.inputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
     _visualStudioFinder      = visualStudioFinder;
 }
 protected NUnitTestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.InputProjectDriver = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
Exemplo n.º 9
0
 public NUnitTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
Exemplo n.º 10
0
 public FeatureFileSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
Exemplo n.º 11
0
 public BindingSteps(InputProjectDriver inputProjectDriver, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.hooksDriver = hooksDriver;
 }
Exemplo n.º 12
0
 public GeneratorSteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectCompiler = projectCompiler;
     this.projectGenerator = projectGenerator;
 }
 protected NUnit3TestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
 public XUnitTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.inputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
Exemplo n.º 15
0
 public NUnit3InProcessTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
 protected NUnit3TestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
Exemplo n.º 17
0
 public NUnit3TestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
Exemplo n.º 18
0
 public BindingSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
Exemplo n.º 19
0
 public ExternalLibrarySteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectGenerator = projectGenerator;
     this.projectCompiler = projectCompiler;
 }