Esempio n. 1
0
 public static void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     turnstile       = new TurnstileFSM(controllerSpoof);
 }
Esempio 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);
 }
Esempio n. 5
0
 public void SetUp()
 {
     controllerSpoof = new TurnstileControllerSpoof();
     this.turnStile  = new TurnStile(this.controllerSpoof);
 }