@Test
public void test1() throws Exception {
LibraryStub stub = new LibraryStub(UtilServer.getConfigurationContext(), "http://127.0.0.1:" + UtilServer.TESTING_PORT + "/axis2/services/library");
stub.addBook("Paperback", "0618918248", new String[] { "Richard Dawkins" }, "The God Delusion");
Book book = stub.getBook("0618918248");
assertNotNull(book);
assertEquals("Paperback", book.getType());
assertEquals("0618918248", book.getIsbn());