Centos6.6安装phpunit

安装说明

虚拟机:VirtualBox

操作用户:root

系统环境:centos6.6 x64

安装方式:扩展安装

软件:phpunit.phar

软件下载目录:/root/opt

下载地址:https://phar.phpunit.de/phpunit.phar

安装前说明:php5.3.0以后的版本phar是默认作为扩展已经安装了,则不需要单独去安装。网上很多还在教phar安装的教程已经过时啦。

安装Phpunit

[root@localhost opt]# wget https://phar.phpunit.de/phpunit.phar
[root@localhost opt]# chmod +x phpunit.phar
[root@localhost opt]# sudo mv phpunit.phar /usr/local/bin/phpunit
[root@localhost opt]# phpunit --version
PHPUnit 4.7.0 by Sebastian Bergmann and contributors.

参考文献:

https://phpunit.de/getting-started.html

http://www.cnblogs.com/jiqingwu/p/4283459.html

你可能感兴趣的:(单元测试,phpunit)