Codeception 2.4.0 已发布,更新内容如下:
兼容 PHPUnit 7.x
不再支持 PHP 5.4 和 PHP 5.5
内部 API 重构:
内部使用的现代 PHP 类名称
将 PHPUnit 相关的类移到了 codeception / phpunit-wrapper 包中。
Cest hooks 行为调整:
当测试失败时调用 _failed
当测试成功时调用 _passed
测试成功或失败均调用 _after
Codeception 是一个全堆栈的 PHP 测试框架,测试示例:[code]class UserControllerCest {
public $class = 'UserController';
public function createAction(CodeGuy $I)
{
$I->haveFakeClass($userController = Stub::make('UserController'));
$I->executeTestedMethodOn($userController, array('username' => 'MilesDavis', 'email' => 'miles@davis.com'))
->seeResultEquals(true)
->seeMethodInvoked($userController, 'renderHtml')
->seeInDabatase('users', array('username' => 'MilesDavis'));
}
}
?>[/code]软件详情:https://github.com/Codeception/Codeception/blob/2.4/CHANGELOG-2.4.md
下载地址:https://github.com/Codeception/Codeception/archive/2.4.0.zip
来自:开源中国社区