Ejemplo n.º 1
0
 public void Given_the_Card_is_disabled()
 {
     _card = new Card(false, 100);
     _atm  = new Atm(100);
 }
Ejemplo n.º 2
0
 public void And_the_machine_contains(int atmBalance)
 {
     _atm = new Atm(atmBalance);
 }
Ejemplo n.º 3
0
 void AndGivenTheMachineContainsEnoughMoney()
 {
     _atm = new Atm(100);
 }