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 contains a few tasks. Unit tests for the tasks are in the separate branches task1, task2, task3....
You can switch between branches using a 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 taks
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
To get your work started you need to clone this repository on your computer using next command
git clone <url>
Url you can copy here
This sprint contains few tasks. Unit tests to each tasks are in separate branches task1, task2, task3....
You can switch between branches using command
git checkout <branch name>
e.g.
git checkout task1
Don't forget to commit your code before switching to another branch
In main folder firstly you need to complete code with the solution of the taks
After this uncomment all tests in folder test and run it
mvn test
or (if you don't have installed Maven on your PC)
./mvnw test
or just using command Run
from your IDE