Пример #1
0
 public void SetupThreeInvokerChain()
 {
     Chain = new InvokerChain();
     Chain.Add(StartInvoker, MiddleInvoker);
     Chain.Add(MiddleInvoker, MockInvoker.Object);
 }
Пример #2
0
 public void SetupTwoInvokerChain()
 {
     Chain = new InvokerChain ();
     Chain.Add (StartInvoker, MockInvoker.Object);
 }
Пример #3
0
 public void SetupTwoInvokerChain()
 {
     Chain = new InvokerChain();
     Chain.Add(StartInvoker, MockInvoker.Object);
 }
Пример #4
0
 public void SetupThreeInvokerChain()
 {
     Chain = new InvokerChain ();
     Chain.Add (StartInvoker, MiddleInvoker);
     Chain.Add (MiddleInvoker, MockInvoker.Object);
 }