/**
 * TODO Put here a description of what this class does.
 *
 * @author wollowsk.
 *         Created Sep 7, 2010.
 */
public class Testing {
	/**
	* Tests the methods of the BankAccount class.
	*  @param args not used
	*/
	public static void main(String[] args)
	{
	   BankAccount harrysChecking = new BankAccount();
	   harrysChecking.deposit(500);
	   harrysChecking.withdraw(5000);
	   System.out.println(harrysChecking.getBalance());
	 }
	
	

}