private void LoadAssemblies() { var parser = new ActionStepParser(configuration.Filter, actionCatalog); foreach (var assembly in configuration.Assemblies) { parser.FindActionSteps(Assembly.LoadFrom(assembly)); } }
public ActionStepStepResolver(object stepHelper) { _stepHelper = stepHelper; _actionCatalog = new ActionCatalog(); _stepParser = new ActionStepParser(new StoryRunnerFilter(), _actionCatalog); _stepParser.FindActionStepMethods(stepHelper.GetType(), _stepHelper); _parameterConverter = new ParameterConverter(_actionCatalog); }
public virtual void SetUp() { _actionCatalog = new ActionCatalog(); _actionStepParser = new ActionStepParser(_storyRunnerFilter, _actionCatalog); _actionStepParser.FindActionSteps(GetType().Assembly); }