You can start by cloning the repository to your computer using the following command:
git clone <url>
You can copy the url here
This sprint includes several tasks. Unit tests for these tasks are located in separate branches named task1, task2, task3, etc.
You can switch between branches using the following command:
git checkout <branch name>
e.g.
git checkout task1
Don't forget to commit your code before switching to another branch
In the main folder first you need to complete your code with the solution of the tasks.
After this uncomment all tests in folder test and run the code:
mvn test
or (if you haven't installed Maven on your PC)
./mvnw test
or just use command Run
from your IDE.