lots of exercises in java... from https://github.com/exercism/java

unit-tests.sh 273B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. trap 'exit 1' ERR
  3. ./gradlew --version
  4. echo ""
  5. echo ">>> Running configlet..."
  6. bin/fetch-configlet
  7. bin/configlet lint .
  8. pushd exercises
  9. echo ""
  10. echo ">>> Running tests..."
  11. TERM=dumb ../gradlew check compileStarterSourceJava --parallel --continue
  12. popd