public function testRemoveAction()
 {
     $this->deleteHandler->shouldReceive('delete')->with(self::COMMENT_ID)->once();
     $this->responseFactory->shouldReceive('makeResponse')->once();
     $this->removeController->removeAction(self::COMMENT_ID);
 }