Example #1
0
 internal ProcessMatcher(ISingleMessageMatcher <T> messageToReturn, IMessageBus actionExecutor, ActionExecutionConfig config, AsserterFactory asserterFactory)
 {
     this.messageToReturn = messageToReturn;
     this.actionExecutor  = actionExecutor;
     this.config          = config;
     this.asserterFactory = asserterFactory;
 }
 internal VoidProcessMatcher(IMessageBus actionExecutor, Action action, ActionExecutionConfig config, AsserterFactory asserterFactory)
 {
     this.actionExecutor  = actionExecutor;
     this.action          = action;
     this.config          = config;
     this.asserterFactory = asserterFactory;
 }