/**
  * @covers OAuth\OAuth2\Service\Box::__construct
  * @covers OAuth\OAuth2\Service\Box::getAuthorizationEndpoint
  */
 public function testGetAuthorizationEndpoint()
 {
     $service = new Request($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $this->getMock('\\OAuth\\Common\\Http\\Client\\ClientInterface'), $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface'));
     $this->assertSame('https://www.readability.com/api/rest/v1/oauth/authorize/', $service->getAuthorizationEndpoint()->getAbsoluteUri());
 }