安装
PHPUnit 3.7以前的版本建议用PEAR(2015关闭使用)安装,PHPUnit 3.7及以后的版本建议用Composer安装。
PHPUnit的执行依赖PHP CLI,需要安装PHP CLI。建议安装Xdebug。它支持远程调试,代码覆盖分析和调优PHP脚本。
建议使用PHP 5.3.3以上版本。之前的版本不再维护。
PHPUnit的主页:http://phpunit.de。
验证PHP CLI正常工作:
$ php -r "echo ‘Hello, World‘;" Hello, World
CLI可能使用了不同的php.ini配置文件,使用"php -i"可以查看。
Composer的安装:
# curl -sS https://getcomposer.org/installer | php #!/usr/bin/env php All settings correct for using Composer Downloading... Composer successfully installed to: /root/composer.phar Use it: php composer.phar # 或者 # php -r "readfile(‘https://getcomposer.org/installer‘);" | php
Composer可以指定PHPUnit的存储位置和脚本的位置,在机器上保留多个PHPUnit版本。
需要创建:composer.json,比如:
{ "require-dev": { "phpunit/phpunit": "3.7.*" } }
系统级别的:
{ "require-dev": { "phpunit/phpunit": "4.8.*" }, "config": { "bin-dir": "/usr/local/bin/" } }
然后执行“# php composer.phar install”即可完成安装。
ubuntu自带phpunit,安装方式:apt-get install phpunit。
手工安装,下载https://phar.phpunit.de/phpunit.phar ,测试"php phpunit.phar –version",可以放入系统目录:“chmod +x phpunit.phar; mv phpunit.phar /usr/local/bin/phpunit”。
Windows可以使用phpunit.bat,克隆即可:“git clone https://github.com/sebastianbergmann/phpunit/”
时间: 2024-10-07 14:51:05