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