Class BookDAOTestBase

  • Direct Known Subclasses:
    JPABookDAOTest

    public abstract class BookDAOTestBase
    extends Object
    This class defines the core tests for our Book DAOs. Sub-classes will provide an implementation.
    • Field Detail

      • dao

        protected ejava.examples.daoex.dao.BookDAO dao
    • Constructor Detail

      • BookDAOTestBase

        public BookDAOTestBase()
    • Method Detail

      • makeBook

        protected ejava.examples.daoex.bo.Book makeBook()
        This helper method will create a book instance with random data
      • testCreate

        public void testCreate()
        This method verifies our ability to create/persist a book.
      • testGet

        public void testGet()
        This method verifies our ability to get a book by Id
      • testUpdate

        public void testUpdate()
        This method verifies our ability to updated an already persisted book.
      • testDelete

        public void testDelete()
        This test verifies our ability to delete a book.
      • testFindAll

        public void testFindAll()
        This test verifies the ability to get a page of books from DB