Ejemplo n.º 1
0
 public function testSetUserAuthorisationUrlThrowsExceptionForInvalidUrl()
 {
     $config = array('consumerKey' => '12345', 'consumerSecret' => '54321');
     $consumer = new Zend_Oauth_Consumer($config);
     try {
         $consumer->setUserAuthorisationUrl('buckyball');
         $this->fail('Invalid url accepted by setUserAuthorisationUrl');
     } catch (Zend_Oauth_Exception $e) {
     }
 }