/**
  * @covers OAuth\OAuth2\Service\Dropbox::__construct
  * @covers OAuth\OAuth2\Service\Dropbox::getAccessTokenEndpoint
  */
 public function testGetAccessTokenEndpoint()
 {
     $service = new Dropbox($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $this->getMock('\\OAuth\\Common\\Http\\Client\\ClientInterface'), $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface'));
     $this->assertSame('https://api.dropbox.com/1/oauth2/token', $service->getAccessTokenEndpoint()->getAbsoluteUri());
 }
Exemple #2
0
 /**
  * @covers OAuth\OAuth2\Service\Dropbox::__construct
  * @covers OAuth\OAuth2\Service\Dropbox::getAccessTokenEndpoint
  */
 public function testGetAccessTokenEndpoint()
 {
     $service = new Dropbox($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $this->getMock('\\Buzz\\Browser'), $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface'));
     $this->assertSame('https://api.dropbox.com/1/oauth2/token', (string) $service->getAccessTokenEndpoint());
 }