// CheckTest.java
// by Bryson Payne

public class CheckTest
{
	public static void main(String[] args)
	{
		CheckingAccount myAcct = new CheckingAccount(1001,500.0);
		myAcct.deposit(250);
		myAcct.withdraw(200);
		System.out.println("Balance now is: $" + myAcct.getBalance() );
	}
}