public RuntimePluginLocator(IRuntimePluginLocationMerger runtimePluginLocationMerger, ISpecFlowPath specFlowPath)
 {
     _runtimePluginLocationMerger = runtimePluginLocationMerger;
     _specFlowPath = specFlowPath;
 }
Ejemplo n.º 2
0
 public RuntimePluginLocator(IRuntimePluginLocationMerger runtimePluginLocationMerger)
 {
     _runtimePluginLocationMerger = runtimePluginLocationMerger;
     _pathToFolderWithSpecFlowAssembly = Path.GetDirectoryName(typeof(RuntimePluginLocator).Assembly.Location);
 }
 public RuntimePluginLocator(IRuntimePluginLocationMerger runtimePluginLocationMerger, ISpecFlowPath specFlowPath, ITestAssemblyProvider testAssemblyProvider)
 {
     _runtimePluginLocationMerger = runtimePluginLocationMerger;
     _specFlowPath = specFlowPath;
     _testAssembly = testAssemblyProvider.TestAssembly;
 }