我正在学习使用phpunit测试我的laravel应用程序。
一切正常但我希望给出的输出更清楚。
例如,对于我的测试,我有这个回报:
如何拥有: - 测试“myFirstTest”:好的 - 测试“MySecondTest”:好的
是否可以在我的脚本中添加一些注释,如下所示:
public function testPageErreurConnexion()
{
$this->visit('login')
->type('59414552', 'compte')
->type('toto', 'password')
->press('btn_connexion')
->seePageIs('login')
->see('Impossible')
->addComments('this is a comment');
}
如你所见,我是这些测试的初学者。