Example #1
0
 public ProjectSteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectCompiler = projectCompiler;
     _hooksDriver = hooksDriver;
     this.projectGenerator = projectGenerator;
 }
Example #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;
 }
Example #3
0
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog = new Lazy<string>(() =>
     {
         EnsureInitialized();
         return File.ReadAllText(HookLogPath);
     });
 }
Example #4
0
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog     = new Lazy <string>(() =>
     {
         EnsureInitialized();
         return(File.ReadAllText(HookLogPath));
     });
 }
Example #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;
 }
 public NUnitTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
Example #10
0
 public FeatureFileSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
Example #11
0
 public BindingSteps(InputProjectDriver inputProjectDriver, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.hooksDriver = hooksDriver;
 }
Example #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;
 }
Example #15
0
 public NUnit3InProcessTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
 protected NUnit3TestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
 public NUnit3TestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
Example #18
0
 public BindingSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
Example #19
0
 public ExternalLibrarySteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectGenerator = projectGenerator;
     this.projectCompiler = projectCompiler;
 }