Example #1
0
 public function testSetAccessTokenUrlThrowsExceptionForInvalidUrl()
 {
     $config = array('consumerKey' => '12345', 'consumerSecret' => '54321');
     $consumer = new Consumer($config);
     $this->setExpectedException('ZendOAuth\\Exception\\ExceptionInterface');
     $consumer->setAccessTokenUrl('buckyball');
 }