Exemplo n.º 1
0
 public static void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     turnstile       = new TurnstileFSM(controllerSpoof);
 }
Exemplo n.º 2
0
 public void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     turnstile       = new StatePatternTurnstile(controllerSpoof);
 }
 public void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     turnstile       = new StateTransitionTableTurnstile(controllerSpoof);
 }
 public void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     turnstile       = new SwitchCaseTurnstile(controllerSpoof);
 }
Exemplo n.º 5
0
 public void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     this.turnStile  = new TurnStile(this.controllerSpoof);
 }