client = new Zend_Oauth_Client(array()); } /** * @group ZF-12488 */ public function testAllowsOptionsAsRequestMethod() { $this->client->setRequestMethod(Zend_Oauth_Client::OPTIONS); $this->assertEquals(Zend_Oauth_Client::OPTIONS, $this->client->getRequestMethod()); } }