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