book.setAuthor(differentAuthor);
Book differentBook = new Book();
book.setBookId(BOOK_1_ID);
differentAuthor.addBook(differentBook);
// check one roundtrip from author
assertTrue("author from book should not be the same object as author",
author != book.getAuthor());