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 StringStepRunner(ActionCatalog actionCatalog)
 {
     ActionCatalog = actionCatalog;
     ParameterConverter = new ParameterConverter(ActionCatalog);
 }