I am running OSX Lion with an installation of XAMPP. Setting up PEAR with XAMPP has proven to be difficult, but I got it work and installed PHPUnit. When I look in the XAMPP p
Check your bootstrap.php and disable fallback autoloader:
Zend_Loader_Autoloader::getInstance()->setFallbackAutoloader(false);
I also had to uninstall phing and replace it by an older version:
sudo pear uninstall phing/phing
sudo pear install phing/phing-2.3.3
Zend Framework requires you to run PHPUnit 3.5.x
and I assume you have installed PHPUnit 3.6.x
from pear.
Check out the guide on how to downgrade-phpunit-3-6-to-3-5-15 to fix your issue when running the ZF1 tests