Exemple #1
0
 public function testGetAuthenticateUrl()
 {
     $token = $this->getMockBuilder('Widop\\Twitter\\OAuth\\Token\\OAuthToken')->disableOriginalConstructor()->getMock();
     $token->expects($this->once())->method('getKey')->will($this->returnValue('token_key'));
     $this->assertSame('https://api.twitter.com/oauth/authenticate?oauth_token=token_key', $this->oauth->getAuthenticateUrl($token));
 }