Author withoutBook = new Author();
withoutBook.setName(AUTHOR_3_NAME);
AuthorPeer.doInsert(withoutBook);
Book effective = new Book();
effective.setTitle(BOOK_1_TITLE);
effective.setIsbn(BOOK_1_ISBN);
effective.setAuthor(bloch);
effective.save();
Book tcpip = new Book();
tcpip.setTitle(BOOK_2_TITLE);
tcpip.setIsbn(BOOK_2_ISBN);
tcpip.setAuthorId(stevens.getAuthorId());
tcpip.save();
Book tcpipVolTwo = new Book();
tcpipVolTwo.setTitle(BOOK_3_TITLE);
tcpipVolTwo.setIsbn(BOOK_3_ISBN);
tcpipVolTwo.setAuthorId(stevens.getAuthorId());
tcpipVolTwo.save();
}
catch (Exception e) {
e.printStackTrace();
fail("Exception caught : "