A library has a large collection of books organized in different rooms, rows and book-shelves that are all
numbered.
The local librarian is working on an application in which he can register the books and make inventory lists
for a given room, row, or book-shelf. Also, it must be possible to locate a given book by its ISBN number.
Task is to:
- Create an object model that represents the necessary entities.
- Establish a small set of
test data.
- Add necessary object collections to enable efficient creation of the inventory lists and locating
books.
- Create objects and populate collections with the test data. Insertion speed of new books is not relevant.
- Establish a set of test cases that verifies the solution against the test data.
How do i create an object model an establish a small set of test data? and establish a set of test cases ?
can someone help me with this?