%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/plugin/ims_lti/vendor/oauth1/tests/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/plugin/ims_lti/vendor/oauth1/tests/OAuthTokenTest.php |
<?php
require_once 'common.php';
class OAuthTokenTest extends PHPUnit_Framework_TestCase {
public function testSerialize() {
$token = new OAuthToken('token', 'secret');
$this->assertEquals('oauth_token=token&oauth_token_secret=secret', $token->to_string());
$token = new OAuthToken('token&', 'secret%');
$this->assertEquals('oauth_token=token%26&oauth_token_secret=secret%25', $token->to_string());
}
public function testConvertToString() {
$token = new OAuthToken('token', 'secret');
$this->assertEquals('oauth_token=token&oauth_token_secret=secret', (string) $token);
$token = new OAuthToken('token&', 'secret%');
$this->assertEquals('oauth_token=token%26&oauth_token_secret=secret%25', (string) $token);
}
}