예제 #1
0
 private NBehaveConfiguration(bool createAppDomain)
 {
     CreateAppDomain = createAppDomain;
     EventListener = new NullEventListener();
     Filter = new StoryRunnerFilter();
     TagsFilter = new List<string[]>();
     Assemblies = new List<string>();
 }
예제 #2
0
 public ActionStepParser(StoryRunnerFilter storyRunnerFilter, ActionCatalog actionCatalog)
 {
     this.storyRunnerFilter = storyRunnerFilter;
     this.actionCatalog = actionCatalog;
     methodWithAttributeFinder = new MethodWithAttributeFinder(storyRunnerFilter);
 }
예제 #3
0
 public ActionStepParser(StoryRunnerFilter storyRunnerFilter, ActionCatalog actionCatalog)
 {
     this.storyRunnerFilter    = storyRunnerFilter;
     this.actionCatalog        = actionCatalog;
     methodWithAttributeFinder = new MethodWithAttributeFinder(storyRunnerFilter);
 }
예제 #4
0
 public NBehaveConfiguration SetFilter(StoryRunnerFilter filter)
 {
     Filter = filter;
     return this;
 }
예제 #5
0
 public MethodWithAttributeFinder(StoryRunnerFilter storyRunnerFilter)
 {
     this.storyRunnerFilter = storyRunnerFilter;
 }
예제 #6
0
 public DelegatesWithAttributeFinder(StoryRunnerFilter storyRunnerFilter)
 {
     this.storyRunnerFilter = storyRunnerFilter;
 }
예제 #7
0
 public override void SetUp()
 {
     _storyRunnerFilter = new StoryRunnerFilter(GetType().Namespace, ".", ".");
     base.SetUp();
 }