Ejemplo n.º 1
0
 public ActionStepStepResolver(object stepHelper)
 {
     _stepHelper    = stepHelper;
     _actionCatalog = new ActionCatalog();
     _stepParser    = new ActionStepParser(new StoryRunnerFilter(), _actionCatalog);
     _stepParser.FindActionStepMethods(stepHelper.GetType(), _stepHelper);
     _parameterConverter = new ParameterConverter(_actionCatalog);
 }
Ejemplo n.º 2
0
 public override void SetUp()
 {
     _actionCatalog    = new ActionCatalog();
     _actionStepParser = new ActionStepParser(_storyRunnerFilter, _actionCatalog);
     _actionStepParser.FindActionSteps(typeof(TestLib.ConfigFileActionSteps).Assembly);
 }
Ejemplo n.º 3
0
 public virtual void SetUp()
 {
     _actionCatalog    = new ActionCatalog();
     _actionStepParser = new ActionStepParser(_storyRunnerFilter, _actionCatalog);
     _actionStepParser.FindActionSteps(GetType().Assembly);
 }