24 lines
455 B
PHP
24 lines
455 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Abraham\TwitterOAuth\Tests;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Abraham\TwitterOAuth\Consumer;
|
||
|
|
||
|
class ConsumerTest extends TestCase
|
||
|
{
|
||
|
public function testToString()
|
||
|
{
|
||
|
$key = uniqid();
|
||
|
$secret = uniqid();
|
||
|
$consumer = new Consumer($key, $secret);
|
||
|
|
||
|
$this->assertEquals(
|
||
|
"Consumer[key=$key,secret=$secret]",
|
||
|
$consumer->__toString()
|
||
|
);
|
||
|
}
|
||
|
}
|