I figured out this bash command at some point when I needed to run all my PHPUnit tests in a directory at once, tweeted about it, but I keep having a hard time googling for it since.
Here it is:
[bash]
for FILE in $(ls); do phpunit $FILE; done
[/bash]