Recommend this page to a friend! |
Classes of Eustaquio Rangel de Oliveira Jr. | > | PHP Torm ORM for ElasticSearch | > | test/run | > | Download |
|
![]() |
#!/bin/bash export TORM_ENV=test test=$1 filter=$2 for file in $(find -maxdepth 1 -iname '*.php' -type f) do if [ -n "$test" -a "$file" != "./$test" ]; then continue fi echo "running $file ..." if [ -n "$filter" ]; then phpunit --colors --debug --filter "$filter" $file else phpunit --colors --debug $file fi done |