我想用此标头测试一个功能:

public function includeNumComments($posts){


其中$ post是数据数组。

我想知道如何测试将其传递给帖子数组的方法。

我已经尝试过类似的方法,但是它不起作用:

$result = $this->testAction("/comments/includeNumComments/", array('data' => $posts));

$result = $this->testAction("/comments/includeNumComments/", array($posts));


谢谢

最佳答案

那不是真正使用testAction,因为您不能通过HTTP传递数组。无法通过网站上的表格或链接来执行此操作。

您可以将其作为正常功能进行测试:

$result = $this->CommentsController->includeNumComments($posts);

10-06 01:00