/** * Atest class for the Contact class */ public class ContactTester { public static void main(String[] args) { // TO DO 1: Create a contact object with first name, last name, and // phone number of your choosing // HINT: see BankAccountTest.java // NOTE: you will have to write the Contact class constructor first or // the comp[iler will complain // "local" variable declarations String firstName ; String lastName ; String phone ; // TO DO 2: Call the accessor methods for the Contact object you declared // above and print the data returned, properly labelled } }