このヘッダーを使用して関数をテストしたい:
public function includeNumComments($posts){
ここで、$postはデータの配列です。
投稿の配列を渡すメソッドをどのようにテストできますか?
私はこのようなことを試しましたが、うまくいきません:
$result = $this->testAction("/comments/includeNumComments/", array('data' => $posts));
$result = $this->testAction("/comments/includeNumComments/", array($posts));
ありがとう