run-tests.sh 180 B

12345678910
  1. #!/bin/bash
  2. # @file
  3. # Simple script to load composer and run the tests.
  4. set -e
  5. DIR=$(dirname $0)
  6. cd $DIR
  7. test -f "./vendor/bin/phpunit" || ./install.sh
  8. ./vendor/bin/phpunit "$@"