4

我们为frontend的登陆建立一个单元测试
图片描述
提示创建成功,路径写也出来了,我们打开看一下这个文件列表
图片描述
打开生成的文件

namespace tests\codeception\frontend;
class ApiLoginTest extends \Codeception\TestCase\Test
{
    /**
     *@var \tests\codeception\frontend\UnitTester
     */
    protected $tester;

    protected function _before()
    {
    }

    protected function _after()
    {
    }

    // tests
    public function testMe()
    {
    }
}

其中有一个testMe的公共方法,我们在这个方法里面写一个断言

public function testMe()
{
   $this->assertTrue(2 == 2);
}

运行这个测试,显示ok,测试通过
图片描述
我们再增加一个方法

public function testMe()
    {
       $this->assertTrue(2 == 2);
    }
    public function testM1()
    {
       $this->assertTrue(2 <1);
    }

图片描述
我们再运行一次
这次提示有testm1是fail,testme 是ok
Tests:2 运行了2个测试方法,
assertions:2运行了2次断言(就是执行了2次名字是assert开头的方法)
Failures: 1有1次断言是失败的


zebrayoung
240 声望35 粉丝

引用和评论

0 条评论