Update composer dependencies

This commit is contained in:
Kijin Sung 2021-01-06 21:42:06 +09:00
parent bb9a56bcac
commit aabc7ac55e
690 changed files with 61555 additions and 37954 deletions

View file

@ -0,0 +1,23 @@
<?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(),
);
}
}