Submission to the Kelvin system
Description of the procedure for submitting files to the Kelvin system
Submission procedure
Most assignments are submitted to the Kelvin system.
Upload the entire contents of the src folder and the pom.xml file to the system. The easiest way is to use drag-and-drop and drag the src folder and pom.xml file at once into the browser to the assignment area. This is demonstrated in the video below.
Alternatively, you can zip the src folder and the pom.xml file and then upload the zip file to the Kelvin system.
The Kelvin system will compile the project and run the tests, which will then be evaluated and graded.
The project will then be compiled and unit tests will be performed. Try to ensure that the project is always compilable, otherwise it will automatically be assigned 0 points.
The tests may not be perfect, so don't hesitate to speak up if you think the number of points does not reflect reality.
The default projects that are part of the assignments usually contains the same tests that are then run in Kelvin, so it is often faster to verify the correctness locally by running unit tests.
Eclipse:
RIGHT-CLICK on the project -> Run As -> JUnit Test
Idea:
RIGHT-CLICK on the project -> Run 'All Tests'