Package ejava.examples.daoex.dao
Class BookDAOTestBase
- java.lang.Object
-
- ejava.examples.daoex.dao.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 Summary
Fields Modifier and Type Field Description protected ejava.examples.daoex.dao.BookDAO
dao
-
Constructor Summary
Constructors Constructor Description BookDAOTestBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ejava.examples.daoex.bo.Book
makeBook()
This helper method will create a book instance with random datavoid
testCreate()
This method verifies our ability to create/persist a book.void
testDelete()
This test verifies our ability to delete a book.void
testFindAll()
This test verifies the ability to get a page of books from DBvoid
testGet()
This method verifies our ability to get a book by Idvoid
testUpdate()
This method verifies our ability to updated an already persisted book.
-
-
-
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
-
-