/**
  * @depends testRestGetComment
  * @param $comment_id
  */
 public function testRestRemoveComment($comment_id)
 {
     $comment = \App\Services\CommentManager\Models\Comment::find($comment_id);
     $this->assertNotNull($comment);
     $comment->delete();
 }