#!/bin/sh # Be in the directory with all the tests. cd `dirname $0`; # Run tests sequentially. for foo in *Test.php; do php $foo; done;