/* * File: LibraryRecordTest.java * ---------------------------- * Simple test of the LibraryRecord class. */ import acm.program.*; public class LibraryRecordTest extends ConsoleProgram { public void run() { LibraryRecord book1 = new LibraryRecord("The Art and Science of C", "Eric Roberts", "QA76.73.C15", "Addison-Wesley", 1995); LibraryRecord book2 = new LibraryRecord("Euclid's Elements", "Robert of Chester", "QA31.B87", "none", 1250, false); println(book1); println(book2); } }