package com.wommand.exer3; public class CustomerTest { public static void main(String[] args) { Customer cust = new Customer("jane","smith"); Account acct = new Account(1000,2000,0.0123); cust.setAccount(acct); cust.getAccount().deposit(100); cust.getAccount().withdraw(960); c