我们为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次断言是失败的
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。