コード例 #1
0
ファイル: ProjectSteps.cs プロジェクト: tmulkern/SpecFlow
 public ProjectSteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectCompiler = projectCompiler;
     _hooksDriver = hooksDriver;
     this.projectGenerator = projectGenerator;
 }
コード例 #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;
 }
コード例 #3
0
ファイル: HooksDriver.cs プロジェクト: tmulkern/SpecFlow
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog = new Lazy<string>(() =>
     {
         EnsureInitialized();
         return File.ReadAllText(HookLogPath);
     });
 }
コード例 #4
0
 public HooksDriver(InputProjectDriver inputProjectDriver)
 {
     HookLogPath = Path.Combine(inputProjectDriver.DeploymentFolder, "hooks.log");
     hookLog     = new Lazy <string>(() =>
     {
         EnsureInitialized();
         return(File.ReadAllText(HookLogPath));
     });
 }
コード例 #5
0
ファイル: TestFileSteps.cs プロジェクト: Galad/SpecFlow
 public TestFileSteps(TestFileManager testFileManager, ParserDriver parserDriver, InputProjectDriver inputProjectDriver)
 {
     this.testFileManager = testFileManager;
     this.inputProjectDriver = inputProjectDriver;
     this.parserDriver = parserDriver;
 }
コード例 #6
0
 protected NUnitTestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.InputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
コード例 #7
0
 public MsTestTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult, VisualStudioFinder visualStudioFinder)
 {
     this.inputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
     _visualStudioFinder      = visualStudioFinder;
 }
コード例 #8
0
 protected NUnitTestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.InputProjectDriver = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
コード例 #9
0
 public NUnitTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
コード例 #10
0
ファイル: FeatureFileSteps.cs プロジェクト: BEllis/SpecFlow
 public FeatureFileSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
コード例 #11
0
ファイル: BindingSteps.cs プロジェクト: ethanmoffat/SpecFlow
 public BindingSteps(InputProjectDriver inputProjectDriver, HooksDriver hooksDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.hooksDriver = hooksDriver;
 }
コード例 #12
0
 public GeneratorSteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectCompiler = projectCompiler;
     this.projectGenerator = projectGenerator;
 }
コード例 #13
0
 protected NUnit3TestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
コード例 #14
0
 public XUnitTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
 {
     this.inputProjectDriver  = inputProjectDriver;
     this.testExecutionResult = testExecutionResult;
 }
コード例 #15
0
 public NUnit3InProcessTestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
コード例 #16
0
 protected NUnit3TestExecutionDriverBase(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
コード例 #17
0
 public NUnit3TestExecutionDriver(InputProjectDriver inputProjectDriver, TestExecutionResult testExecutionResult)
     : base(inputProjectDriver, testExecutionResult)
 {
 }
コード例 #18
0
ファイル: BindingSteps.cs プロジェクト: Galad/SpecFlow
 public BindingSteps(InputProjectDriver inputProjectDriver)
 {
     this.inputProjectDriver = inputProjectDriver;
 }
コード例 #19
0
 public ExternalLibrarySteps(InputProjectDriver inputProjectDriver, ProjectGenerator projectGenerator, ProjectCompiler projectCompiler)
 {
     this.inputProjectDriver = inputProjectDriver;
     this.projectGenerator = projectGenerator;
     this.projectCompiler = projectCompiler;
 }