/**
  * バリデーションが正しく通ることをテストします
  */
 public function testValidationSuccess()
 {
     $this->request['comment'] = 'testing';
     $this->request['entry_id'] = 1;
     $this->assertNull($this->request->validate());
 }