public ScenarioSetupAndTeardown(StreamInfoContainer streamInfoContainer,
                                 InMemoryStoreSessionContainer sessionContainer,
                                 InterceptorContext interceptorContext,
                                 PassThroughValidator passThroughValidator)
 {
     this.streamInfoContainer  = streamInfoContainer;
     this.sessionContainer     = sessionContainer;
     this.interceptorContext   = interceptorContext;
     this.passThroughValidator = passThroughValidator;
 }
 public InvariantsValidator(PassThroughValidator validator)
 => this.validator = validator ?? throw new ArgumentNullException(nameof(validator));
示例#3
0
 public SetValidatorSteps(PassThroughValidator passThroughValidator)
 => this.passThroughValidator = passThroughValidator;