Skip to content

Instantly share code, notes, and snippets.

@Gryff
Created August 27, 2020 13:05
Show Gist options
  • Save Gryff/28a1ad341c4e3266ec495ae6139bed95 to your computer and use it in GitHub Desktop.
Save Gryff/28a1ad341c4e3266ec495ae6139bed95 to your computer and use it in GitHub Desktop.

bank-kata

Implement a bank account that can deposit, withdraw and print a statement to the console.

Follow the Tell, don't ask principle. All methods should be void.

void Deposit(int)
void Withdraw(int)
void PrintStatement()

An acceptance test to start:

Given a client makes a deposit of 1000 on 10-01-2012
And a deposit of 2000 on 13-01-2012
And a withdrawal of 500 on 14-01-2012
When she prints her bank statement
Then she would see

date       || credit   || debit    || balance  
14/01/2012 ||          || 500.00   || 2500.00   
13/01/2012 || 2000.00  ||          || 3000.00  
10/01/2012 || 1000.00  ||          || 1000.00 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment