I\'m trying to setup a new Continuous Integration server that utilizes Phing and PHPUnit for automatically running test cases.
I\'ve installed Phing with Pear:
It looks like there are some actual issues with phing and the latest 4.x versions of PHPUnit: http://www.phing.info/trac/ticket/1091.
So to fix the issue, I removed PHPUnit 4 and specified an older version:
pear install phpunit/PHPUnit-3.7.35
Phing and PHPUnit worked immediately at this point.