Skip to content

Instantly share code, notes, and snippets.

@MiyamotoAkira
Created February 15, 2018 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MiyamotoAkira/1d95ff1330aff87acfc8f2d3bf6f5b1d to your computer and use it in GitHub Desktop.
Save MiyamotoAkira/1d95ff1330aff87acfc8f2d3bf6f5b1d to your computer and use it in GitHub Desktop.
Bank kata
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