Example #1
0
 public function testConstructMethod()
 {
     $token = new AccessToken('key', 'secret');
     $this->assertEquals('key', $token->getKey());
     $this->assertEquals('secret', $token->getSecret());
     return $token;
 }