Exemple #1
0
 /**
  * @covers OAuth\OAuth1\Service\ScoopIt::__construct
  * @covers OAuth\OAuth1\Service\ScoopIt::getRequestTokenEndpoint
  */
 public function testGetRequestTokenEndpoint()
 {
     $service = new ScoopIt($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $this->getMock('\\Buzz\\Browser'), $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface'), $this->getMock('\\OAuth\\OAuth1\\Signature\\SignatureInterface'));
     $this->assertSame('https://www.scoop.it/oauth/request', (string) $service->getRequestTokenEndpoint());
 }
Exemple #2
0
 /**
  * @covers OAuth\OAuth1\Service\ScoopIt::__construct
  * @covers OAuth\OAuth1\Service\ScoopIt::getRequestTokenEndpoint
  */
 public function testGetRequestTokenEndpoint()
 {
     $service = new ScoopIt($this->getMock('\\OAuth\\Common\\Consumer\\CredentialsInterface'), $this->getMock('\\OAuth\\Common\\Http\\Client\\ClientInterface'), $this->getMock('\\OAuth\\Common\\Storage\\TokenStorageInterface'), $this->getMock('\\OAuth\\OAuth1\\Signature\\SignatureInterface'));
     $this->assertSame('https://www.scoop.it/oauth/request', $service->getRequestTokenEndpoint()->getAbsoluteUri());
 }