wootook-reloaded/build/build.sh
Gregory PLANCHAT 8e8b4b3513 Updated DependencyInjection component
Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2012-07-17 20:10:13 +02:00

13 lines
494 B
Shell

echo " * Wootook unit testing"
MODULES_DIR="`pwd`/src/application/modules"
for file in `find $MODULES_DIR -mindepth 1 -maxdepth 1 -type d`
do
echo " * Running `basename ${file}` module tests (Unit tests)"
phpunit --strict --colors --configuration ${file}/test/phpunit.xml ${file}/test/php/WootookUnit
#echo " * Running `basename ${file}` module tests (Integration tests)"
#phpunit --strict --colors --configuration ${file}/test/phpunit.xml ${file}/test/php/WootookUnit
done