You can find the instructions for this lab at More Than Equations. Create a new repository on GitHub to house your code. Be sure to make the repository public so that I can view and grade it.
We will use Gradle to automate common development tasks, JUnit for unit testing, and JMH for benchmarking.
You can build the app using:
./gradlew buildYou can run the automated suite of tests using:
./gradlew testYou can run the app using:
./gradlew run --quiet --console=plainThe two flags passed to the run command hide the noisy output from Gradle. You can see the details from Gradle by omitting those flags.
You can run the benchmarking utility using:
./gradlew jmh