本文实例讲述了Yii2单元测试用法。分享给大家供大家参考,具体如下:
使用composer方式安装yii2-app-basic (https://github.com/yiisoft/yii2-app-basic/blob/master/README.md) 装好后既可以使用
建一个Model文件EntryForm.php在models目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php namespace app\models; use Yii; use yii\base\Model; class EntryForm extends Model { public $name ; public $email ; public function rules() { return [ [[ 'name' , 'email' ], 'required' ], [ 'email' , 'email' ], ]; } } |
建一个EntryFormTest.php放在tests/unit/models目录下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php namespace tests\models; use app\models\EntryForm; class EntryFormTest extends \Codeception\Test\Unit { public function testValidInput() { $model = new EntryForm(); $model ->name = 'Harry Qin' ; $model ->email = '15848778@qq.com' ; expect_that( $model ->validate()); return $model ; } public function testInvalidInput() { $model = new EntryForm(); $model ->name = 'Harry Qin' ; $model ->email = 'xxyy' ; expect_not( $model ->validate()); $model = new EntryForm(); $model ->name = '' ; $model ->email = '15848778@qq.com' ; expect_not( $model ->validate()); } /** * 下面一行表示这里输入的参数值来自testValidInput的输出 * @depends testValidInput */ public function testModelProperty( $model ) { expect( $model ->name)->equals( 'Harry Qin' ); } } |
项目根目录下运行
1
|
composer exec codecept run unit |
输出
1
2
3
4
|
。。。。。。 ✔ EntryFormTest: Valid input (0.00s) ✔ EntryFormTest: Invalid input (0.00s) ✔ EntryFormTest: Model property (0.00s) |
这里全部成功了,如果测试失败,会显示具体失败信息。
这里主要是3个方法
expect_that: 假设为true
expect_not: 假设为false
expect: 假设目标对象,后面可以接verify方法,具体方法列表在vendor/codeception/verify/src/Codeception/Verify.php文件中
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。