windows xampp下安装phpunit

2020-12-07 14:18:06 浏览数 (1)

用xampp把开发环境搬到了本子上,单元测试使用的phpunit当然也不能少!

下面说下在xampp下安装phpunit的方法

1. 进到windows的命令行模式(cmd)

2. 进入xampp的php目录

代码语言:javascript复制
c:xamppphp

3. 添加phpunit相关的channel

代码语言:javascript复制
pear channel-discover pear.phpunit.de
pear channel-discover components.ez.no
pear channel-discover pear.symfony-project.com
pear channel-discover pear.symfony.com
pear install pear.symfony.com/Yaml(起初未装此依赖,执行phpunit报错)

4.安装phpunit

代码语言:javascript复制
pear install –alldeps phpunit/PHPUnit
代码语言:javascript复制
安装完成后,如果正常的话在php目录下会有phpunit和phpunit.bat文件。
phpunit --version查看当前phpunit版本。

0 人点赞