常用测试工具
codeception 和 phpunit
codecept run unit tests/unit/moTest.php –debug 在项目的根目录运行
第1步 - 安装 Codeception 框架。运行下面的代码。
使用 composer 命令
composer global require “codeception/codeception”
composer global require “codeception/specify”
composer global require “codeception/verify”
步骤2 - 运行如下
ccomposer global status
输出“Changed current directory to
Changed current directory to C:/Users/luky/AppData/Roaming/Composer
No local changes
添加到环境变量:应该加上’C:/Users/luky/AppData/Roaming/Composer/vendor/bin ‘ 到 PATH 环境变量。在本示例中,运行下面的代码 -
export PATH = $PATH:~/.composer/vendor/bin
注:windows系统可右键”我的电脑”=>”高级系统设置”=>”环境变量”来添加。
linux下codecept安装
|
|
步骤3 - 开始测试:
1:
[Codeception\Exception\ConfigurationException]
Configuration file could not be found.
Run bootstrap
to initialize Codeception.
原因:无法找到配置文件
解决办法:运行codecept bootstrap,初始化
2: