码迷,mamicode.com
首页 > 其他好文 > 详细

yii2笔记: 单元测试

时间:2016-11-11 00:45:20      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:put   根目录   ase   vendor   extends   方法   space   php文件   date()   

使用composer方式安装yii2-app-basic (https://github.com/yiisoft/yii2-app-basic/blob/master/README.md) 装好后既可以使用

 

建一个Model文件EntryForm.php在models目录下

 

<?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目录下

 

<?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‘);
    }
}

 

项目根目录下运行

composer exec codecept run unit

 

输出

。。。。。。

? 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文件中

yii2笔记: 单元测试

标签:put   根目录   ase   vendor   extends   方法   space   php文件   date()   

原文地址:http://www.cnblogs.com/zergling9999/p/6052766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!