oauth2-server/tests/Utils/SecureKeyTest.php

14 lines
248 B
PHP
Raw Normal View History

2016-02-12 23:38:13 +05:30
<?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()));
}
}