mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-02 00:43:11 +05:30
14 lines
248 B
PHP
14 lines
248 B
PHP
<?php
|
|
|
|
namespace LeagueTests\Utils;
|
|
|
|
use League\OAuth2\Server\Utils\SecureKey;
|
|
|
|
class SecureKeyTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testGenerate()
|
|
{
|
|
$this->assertTrue(is_string(SecureKey::generate()));
|
|
}
|
|
}
|