public function testConstructorSetsCustomServiceParameters()
 {
     $request = new Zend_Oauth_Http_RequestToken($this->stubConsumer, array(1, 2, 3), $this->stubHttpUtility);
     $this->assertEquals(array(1, 2, 3), $request->getParameters());
 }