// Names:
// BookList Assignment

 /** A main program to test the class BookList. */
class TestBookList
{
    /** Test BookList. */
    public static void main(String[] args)
    {  
        BookList books = new BookList();
        books.addBook(new Book("David Barnes", "Objects First", 2006));
        // Add more!
        // ...
        System.out.println("The full list is:");
        books.printList();
        // Add more tests to fully test your code.  
        // Make sure the correctness of the tests can be seen 
        // without reading the source code -- 
        // *print* comments on the meanings in this test program.
        // ...
    }
}
