public void SetUp()
		{
			theCorrelator = MockRepository.GenerateStub<ICorrelateRequests>();
			theNextBehavior = MockRepository.GenerateStub<IActionBehavior>();

			theBehavior = new SetCorrelationHeaders(theCorrelator, theNextBehavior);
			theBehavior.Invoke();
		}
Esempio n. 2
0
        public void SetUp()
        {
            theCorrelator   = MockRepository.GenerateStub <ICorrelateRequests>();
            theNextBehavior = MockRepository.GenerateStub <IActionBehavior>();

            theBehavior = new SetCorrelationHeaders(theCorrelator, theNextBehavior);
            theBehavior.Invoke();
        }
Esempio n. 3
0
 public SetCorrelationHeaders(ICorrelateRequests correlator, IActionBehavior inner)
     : base(PartialBehavior.Ignored)
 {
     _correlator    = correlator;
     InsideBehavior = inner;
 }
		public SetCorrelationHeaders(ICorrelateRequests correlator, IActionBehavior inner)
			: base(PartialBehavior.Ignored)
		{
			_correlator = correlator;
			InsideBehavior = inner;
		}