我尝试编写一个生成步骤的自定义步骤
我的代码看起来像:
/**
* @Then /^Check_raoul$/
*/
public function checkRaoul()
{
// grab the content ...
// get players ...
$to_return = array();
foreach ($players as $player) {
$player = $player->textContent;
if (preg_match('/^.*video=([^&]*)&.*$/', $player, $matches))
{
array_push($to_return, new Step\Then('I check the video of id "'.$matches[1].'"'));
}
}
return $to_return;
}
/**
* @Then /^I check the video of id "([^"]*)"$/
*/
public function iCheckTheVideoOfId($id)
{
// ...
}
工作正常,但是当集成到 jenkins 或 un cli 时,如果 iCheckTheVideoOfId 的多次执行失败,我只会看到一个错误。我希望生成的步骤数等于 iCheckTheVideoOfId 调用的数量
我做错了什么?