10 lines
269 B
PHP
10 lines
269 B
PHP
<?php
|
|
|
|
require 'common.php';
|
|
|
|
class OAuthConsumerTest extends PHPUnit_Framework_TestCase {
|
|
public function testConvertToString() {
|
|
$consumer = new OAuthConsumer('key', 'secret');
|
|
$this->assertEquals('OAuthConsumer[key=key,secret=secret]', (string) $consumer);
|
|
}
|
|
} |