./gradlew clean build
./gradlew test
Make the tests run green (there should be one failing test)
Update the existing /person/{lastName}/{firstName}
endpoint to return an appropriate RESTful response when the requested person does not exist in the list
- prove your results
Write a RESTful API endpoint to retrieve a list of all people with a particular surname
- pay attention to what should be returned when there are no match, one match, multiple matches
- prove your results
Write a RESTful API endpoint to add a new value to the list
- pay attention to what should be returned when the record already exists
- prove your resutls