- ❓ What do we do in the
Server
andUserController
constructors to set up our connection to the development database? - ❓ How do we retrieve a user by ID in the
UserController.getUser(String)
method? - ❓ How do we retrieve all the users with a given age
in
UserController.getUsers(Map...)
? What's the role offilterDoc
in that method? - ❓ What are these
Document
objects that we use in theUserController
? Why and how are we using them? - ❓ What does
UserControllerSpec.clearAndPopulateDb
do? - ❓ What's being tested in
UserControllerSpec.getUsersWhoAre37()
? How is that being tested? - ❓ Follow the process for adding a new user. What role do
UserController
andUserRequestHandler
play in the process?
- Your answer here...
- Another answer...