Exemplo n.º 1
0
 private void LoadAssemblies()
 {
     var parser = new ActionStepParser(configuration.Filter, actionCatalog);
     foreach (var assembly in configuration.Assemblies)
     {
         parser.FindActionSteps(Assembly.LoadFrom(assembly));
     }
 }
Exemplo n.º 2
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);
 }
Exemplo n.º 3
0
        private void LoadAssemblies()
        {
            var parser = new ActionStepParser(configuration.Filter, actionCatalog);

            foreach (var assembly in configuration.Assemblies)
            {
                parser.FindActionSteps(Assembly.LoadFrom(assembly));
            }
        }
Exemplo n.º 4
0
 public virtual void SetUp()
 {
     _actionCatalog = new ActionCatalog();
     _actionStepParser = new ActionStepParser(_storyRunnerFilter, _actionCatalog);
     _actionStepParser.FindActionSteps(GetType().Assembly);
 }