OO and algorithm challenges in Java.
Make sure you have gradle installed:
brew update
brew install gradle
Configure the gradle build daemon, for faster builds:
touch ~/.gradle/gradle.properties && echo "org.gradle.daemon=true" >> ~/.gradle/gradle.properties
Run all tests with:
gradle test
Run a single test with:
gradle test --tests challenges.MathServiceTest