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