Estoy con windows 7. He instalado phpunit, he reiniciado, si pongo en la línea de comando phpunit --versión obtengo:
PHPUnit 3.5.15 by Sebastian Bergmann
y si pongo el archivo de test de phpunit lo pasa sin problemas.
Pero cuando voy a crear un proyecto en Zend:
C:\ZendFramework-1.11.6\bin\zf create project square
Código:
me dice que no encuentra phpunit en el include_path, si hago un phpinfo()C:\xampp\htdocs>C:\ZendFramework-1.11.6\bin\zf create project square Creating project at C:/xampp/htdocs/square Note: This command created a web project, for more information setting up your V HOST, please see docs/README Testing Note: PHPUnit was not found in your include_path, therefore no testing a ctions will be created.
en include_path tengo esto:
.;C:\Program Files (x86)\Zend\ZendServer\bin\pear;C:\Program Files (x86)\Zend\ZendServer\share\ZendFramework\library; C:\Program Files (x86)\Zend\ZendServer\bin\PEAR\PHPUnit
Buscando en google, alguno apuntaba a cambiar el archivo .zf.ini que está en users, así que en ese archivo he añadido la ruta de la carpeta de phpunit y ese archivo ahora está así
php.include_path = ".;C:\Program Files (x86)\Zend\ZendServer\bin\PEAR\PHPUnit;C:\xampp\ht docs\quickstart\library;C:\ZendFramework-1.11.6\library"
basicloader.classes.0 = "ZFDoctrine_Tool_DoctrineProvider"
Pues bien, aún y así me sale el mensaje que no encuentra Phpunit, que os he puesto antes.
Saludos