Added test/Utils

This commit is contained in:
Alex Bilbie
2016-02-12 18:08:13 +00:00
parent e20c529f39
commit de13e14cdd
4 changed files with 68 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?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()));
}
}