Exemple #1
0
 public void SetupThreeInvokerChain()
 {
     Chain = new InvokerChain();
     Chain.Add(StartInvoker, MiddleInvoker);
     Chain.Add(MiddleInvoker, MockInvoker.Object);
 }
 public void SetupTwoInvokerChain()
 {
     Chain = new InvokerChain ();
     Chain.Add (StartInvoker, MockInvoker.Object);
 }
Exemple #3
0
 public void SetupTwoInvokerChain()
 {
     Chain = new InvokerChain();
     Chain.Add(StartInvoker, MockInvoker.Object);
 }
 public void SetupThreeInvokerChain()
 {
     Chain = new InvokerChain ();
     Chain.Add (StartInvoker, MiddleInvoker);
     Chain.Add (MiddleInvoker, MockInvoker.Object);
 }