11.2. 评论某个回答
本节说明
上一节我们完成了问题的「评论」功能,本节我们来完成答案的「评论」功能
新增测试
我们开发的流程与上一节相比,除了评论的对象不同,其他的开发流程几乎一模一样。所以像上一节一样,我们从测试开始:
tests/Feature/Comments/AnswerCommentsTest.php
<?php
namespace Tests\Feature\Comments;
use App\Models\Answer;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AnswerCommentsTest