0

关于 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 有这个能力吗?

4

1 回答 1

1

不,Codeception 没有这种能力。

然而,这种描述的正确位置是在测试的名称中。

public function NewCustomerRequest(ApiTester $I)

您还可以使用注释操作向输出添加描述- amGoingToexpecthttps://codeception.com/docs/03-AcceptanceTests#CommentsexpectTocomment

于 2018-08-06T10:50:11.670 回答