389390391392393394395396397
} public void testEchoInOutBook() throws Exception { Book book = new Book("author", "title", 12345); BookHolder holder = new BookHolder(book); port.echoInOutBook(holder); assertEquals(book, holder.value); }
387388389390391392393394395