Package net.java.ws.bookstore.domain

Examples of net.java.ws.bookstore.domain.Book


      session = sessionFactory.openSession();
      tx = session.beginTransaction();

      // fill with test data
      Book book = new Book();
      book.setName("The Lord of the Rings");
      session.save(book);
     
      tx.commit();
     
      logger.info("Data has been initialised successfully");
View Full Code Here


  assertEquals(1, books.size());   
  }

  @Test
  public void getBook() throws Exception {
    Book book = bookStoreService.getBook(1);
    assertEquals("The Lord of the Rings", book.getName());
  }
View Full Code Here

TOP

Related Classes of net.java.ws.bookstore.domain.Book

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.