/** * A test of the LibraryMember class * * @author CSC 142 * */ public class LibraryMemberTest { public static void main(String[] args) { LibraryMember m = new LibraryMember(123456789); boolean a; a = m.borrowBook("War and peace"); System.out.println("success = " + a + " (should be true)"); a = m.borrowBook("Hamlet"); System.out.println("success = " + a + " (should be false)"); a = m.returnBook(); System.out.println("success = " + a + " (should be true)"); a = m.returnBook(); System.out.println("success = " + a + " (should be false)"); } }