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