我想用这个头文件测试一个函数:
public function includeNumComments($posts){
其中 $post 是一个数据数组。
我想知道如何测试将一系列帖子传递给它的方法。
我已经尝试过这样的事情,但它不起作用:
$result = $this->testAction("/comments/includeNumComments/", array('data' => $posts));
$result = $this->testAction("/comments/includeNumComments/", array($posts));
谢谢