In cmd run following:
mvnw.cmd clean install
In bash run following:
./mvnw clean install
- Initially all tests will fail.
- Analyze
UserService
java doc and methods definitions. - Analyze tests (prepared data, actual action (method call) and expected result).
- Do not change data model and tests.
- Implement all methods from
UserServiceImpl
using Java 8 features (lambda, StreamAPI, etc). - Run project as described here. All tests should pass.