Skip to content

icougil/bankkata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bank kata

Problem description

Create a simple bank application with the following features:

  • Deposit into Account
  • Withdraw from an Account
  • Print a bank statement to the console.

The entry point should be the following interface, which you can not change. Don't worry about introducing abstractions on Money or Date as this is not the point of the exercise (may be you can use Integer or Strings).

public class Account {
	public void deposit(int amount);
	public void withdraw(int amount);
	public void printStatement();
}

Acceptance criteria

Statement should have the following format:

	DATE       | AMOUNT  | BALANCE
	10/04/2014 | 500.00  | 1400.00
	02/04/2014 | -100.00 | 900.00
	01/04/2014 | 1000.00 | 1000.00

Finally, don't worry about spacing in this statement, it is not the point of the exercise

About

Bank kata (solution)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages