1.下载phpunit 的phar包(4.8的版本所依赖的php版本为 5.3~5.6)
wget https://phar.phpunit.de/phpunit.phar -------->最新版本
wget https://phar.phpunit.de/phpunit-4.8.35.phar
2 查看phar包是否为所需版本
php ./phpunit-4.8.35.phar
3 将phpunit-4.8.35.phar改为全局命令
sudo chmod 777 phpunit-4.8.35.phar;
sudo mv phpunit-4.8.35.phar /usr/bin/phpunit
这个是 安装phpunit 的方法 简单明了实用
报错: /usr/bin/env: PHP: No such file or directory
解决方法: apt-get install php5-cli
使用phpunit的时候可能会报错: Call to undefined function curl_init() in /vagrant/bll/application/libraries/Curl.php
apt-get install php5-curl