function testValidateReturnsResultFromValidator()
 {
     $request = new Http_Request();
     $this->assertTrue($request->validate('key7', new Http_RequestTestsSimpleValidator(true)));
     $this->assertFalse($request->validate('key7', new Http_RequestTestsSimpleValidator(false)));
 }