Lab1_VehicleManagement/
├── src/
│ └── data/
│ ├── Utils.java
│ └── UsingMain.java
├── test/
│ └── data/
│ └── UtilsTest.java
└── lib/
└── junit-platform-console-standalone-1.10.0.jar
└── bin/
└── .vscode/
Open the terminal on project folder and run:
# Create bin directory if not exists
mkdir -p bin
# Compile source and test files
javac -cp "lib/junit-platform-console-standalone-1.10.0.jar" -d bin src/data/*.java test/data/*.java# Run JUnit Tests
java -cp "bin:lib/junit-platform-console-standalone-1.10.0.jar" org.junit.platform.console.ConsoleLauncher --scan-classpath --include-classname ".*UtilsTest"Support me with this assignment by merge this PR - Thank a lot! 🚀😊
