Skip to content

Files

Latest commit

566012e · May 14, 2024

History

History

homework

Homework

Java Language JUnit5 Testing Framework Maven Dependency Manager

Here you'll find a collection of programming assignments to continue learning and practising:

  1. Java Collections
  2. Object-Oriented Programming
  3. Input and Output

📝 Instructions

For code assignments, we've provided a starter Java project.

Like you did when working on exercises:

  • navigate to assignment's root folder,
  • then run the provide tests.

They should all fail at first - since there is no implementation for them yet. You will provide that implementation. 😁

Example

To complete the Java Collections' assignment, navigate to the collections homework folder.

cd collections

Then run the tests.

  • If you're on a Linux, or Mac machine, run:
./mvnw clean test
  • If you're on Windows, run this command instead:
mvnw.cmd clean test

Happy practising! 😄