phpstrom配置phpunit

首先下载phpunit;推荐:官网下载;下载时注意和PHP版本匹配。


一、Windows下的安装


1、选择phpunit的存放路径,比如:C:bin,或者其他磁盘去新建。把下载的phpunit-x.x.x.phar重命名为phpunit.phar拷贝过来。


2、创建脚本文件
新建一个txt文本,内容为:

`@php "%~dp0phpunit.phar" %*`

修改名称及后缀为:phpunit.cmd 。

phpstrom配置phpunit


3、把PHP、phpunit加入到系统环境变量中。配置方法此电脑 -> 属性 -> 高级系统设置 -> 环境变量 -> 系统变量 -> Path
如:

phpstrom配置phpunit


4、打开cmd,执行phpunit -version ,打印出版本号说明成功运行。

phpstrom配置phpunit


5、在cmd下进入项目目录下,执行phpunit命令。出现测试结果。注:需要编写测试类。

phpstrom配置phpunit


二、phpstrom下配置phpunit


1、打开phpstrom,点击file选择setting。设置PHP版本

phpstrom配置phpunit


2、然后设置phpunit运行配置文件路径

phpstrom配置phpunit


3、设置phpunit配置文件,这里是laravel框架的
选择Edit Configurations
phpstrom配置phpunit


点击+号,选择phpunit

phpstrom配置phpunit


phpstrom配置phpunit


每次配置后要点击保存。配置完成后就会出现下图状态,刚配置的UnitTesting,按钮也成了绿色。

phpstrom配置phpunit


4、在项目中编写测试代码。laravel在项目下的tests下。完成后点击UnitTesting后的绿色三角按钮开始执行测试。phpstrom下方出现测试结果。

phpstrom配置phpunit

相关推荐