Esempio n. 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;
 }
Esempio n. 3
0
 protected MockTestBase(UnitTestFrameworkType frameworkType) : this(AsserterFactory.GetAssertAdapter(frameworkType))
 {
     Setup();
 }