import example.atm.outcomes.ATMShouldRetainBankCard;
public class InLotsOfTrouble extends MultiStepScenario {
public void specifySteps() {
given(new AccountIsOverOverdraftLimit());
when(new UserRequestsCash());
then(new ATMShouldRefuseCash());
then(new ATMShouldRetainBankCard());
}