首先请安装好 PEAR环境
可参考以下地址的文章
http://www.fleaphp.org/forum/comments.php?DiscussionID=136&page=1#Item_1
PHPUnit 官方网站安装说明(英文)
http://www.phpunit.de/pocket_guide/3.0/en/installation.html
主要是这两条命令
pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit
可参考以下地址的文章
http://www.fleaphp.org/forum/comments.php?DiscussionID=136&page=1#Item_1
PHPUnit 官方网站安装说明(英文)
http://www.phpunit.de/pocket_guide/3.0/en/installation.html
主要是这两条命令
pear channel-discover pear.phpunit.de
pear install phpunit/PHPUnit
注意: 命令行下的 php.ini 指向的路径我试的时候发现是在 php.exe 所以在目录
而 浏览器下的
php.ini 指向的路径却是 apache 下。特郁闷!
在编写 unit test 时注意现在 3.0版本已不支持
PHPUnit2_Framework_TestCase 这种写法
注意要把 PHPUnit2_Framework_TestCase 改成 PHPUnit_Framework_TestCase
另把
require_once('PHPUnit2/Framework/TestCase.php');
require_once('PHPUnit2/Framework/TestSuite.php');
也改成
require_once('PHPUnit/Framework/TestCase.php');
require_once('PHPUnit/Framework/TestSuite.php');
require_once('PHPUnit2/Framework/TestCase.php');
require_once('PHPUnit2/Framework/TestSuite.php');
也改成
require_once('PHPUnit/Framework/TestCase.php');
require_once('PHPUnit/Framework/TestSuite.php');
php -r "phpinfo();" | find "php.ini"
来查询 php.ini 所以在目录。但得到的是 浏览器下的路径.
尽管使用PEAR安装程序是PHPUnit唯一支持的安装方法,但你还是可以手工安装。要手工安装,参照以下做法:
1.从http://pear.phpunit.de/get下载PHPUnit发布包,然后解压缩,确保目录在php.ini定义的include_path中。
2.准备phpunit脚本
a. 将pear-phpunit脚本改名为phpunit
b. 将脚本中所有的@php_bin@改名为PHP命令行解释器所在的目录(通常为/usr/bin/ php)。
c. 将此脚本拷贝到一个PATH环境变量所包含的目录中,并将文件属性改为可执行(chmod +x phpunit)。
3. 将PHPUnit2/ Runner/Version.php脚本中的所有@package_version@字符串替换为你所安装的PHPUnit版本(如2.3.0)。
1.从http://pear.phpunit.de/get下载PHPUnit发布包,然后解压缩,确保目录在php.ini定义的include_path中。
2.准备phpunit脚本
a. 将pear-phpunit脚本改名为phpunit
b. 将脚本中所有的@php_bin@改名为PHP命令行解释器所在的目录(通常为/usr/bin/ php)。
c. 将此脚本拷贝到一个PATH环境变量所包含的目录中,并将文件属性改为可执行(chmod +x phpunit)。
3. 将PHPUnit2/ Runner/Version.php脚本中的所有@package_version@字符串替换为你所安装的PHPUnit版本(如2.3.0)。