Beispiel #1
0
        public InPlaceCompilingStoryRunner(IRemoteHandlerFactory factory, IStoryFilter filter, IEventBus eventBus)

        {
            _factory  = factory;
            _filter   = filter;
            _eventBus = eventBus;
        }
 public InPlaceCompilingStoryRunner(IRemoteHandlerFactory factory, IScenarioPreprocessor preprocessor, IStoryFilter filter, ISessionContext context, IEventBus eventBus)
 {
     _factory = factory;
     _preprocessor = preprocessor;
     _filter = filter;
     _eventBus = eventBus;
 }
 public InPlaceCompilingStoryRunner(IRemoteHandlerFactory factory,
                                    IResultListener listener,
                                    IScenarioPreprocessor preprocessor,                                         
                                    IStoryFilter filter,
                                    IStoryContextFactory contextFactory)
     : base(listener, preprocessor, filter, contextFactory)
 {
     _factory = factory;
 }
 public InPlaceCompilingStoryRunner(IRemoteHandlerFactory factory, IStoryFilter filter, IEventBus eventBus)
 {
     _factory = factory;
      _filter = filter;
     _eventBus = eventBus;
 }