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