不,Codeception没有这样的能力。
关于Codeception中的输出步骤消息,我有一个相当简单的问题,在文档中找不到答案。
更准确地说:是否有使用别名"更改"codeception中输出的步骤?
此:
public function tryToTest(ApiTester $I)
{
$I->sendPOST('/', ['foo' => 'bar']);
$I->seeResponseCodeIs(200);
}
将输出:
I send post "/",{"foo":"bar"}
I see response code is 200
但我想用别名更改"内容",这样它就可以输出:
I send post "/", NewCustomerRequest
I see response code is 200
Codeception有这种能力吗?
然而,这种描述的正确位置是测试的名称。
public function NewCustomerRequest(ApiTester $I)
此外,您还可以使用注释操作为输出添加描述-amGoingTo
、expect
、expectTo
和comment
https://codeception.com/docs/03-AcceptanceTests#Comments