spec\Newscoop\Services\CommentServiceSpec::it_should_get_all_replies PHP Метод

it_should_get_all_replies() публичный Метод

public it_should_get_all_replies ( CommentRepository $commentRepository )
$commentRepository Newscoop\Entity\Repository\CommentRepository
    public function it_should_get_all_replies($commentRepository)
    {
        $commentRepository->getDirectReplies(33)->willReturn(array(20));
        $commentRepository->getDirectReplies(20)->willReturn(array());
        $this->getAllReplies(33, $commentRepository)->shouldReturn(array(33, 20));
    }