mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-01 16:33:07 +05:30
15 lines
329 B
PHP
15 lines
329 B
PHP
<?php
|
|
|
|
class Secure_Key_test extends PHPUnit_Framework_TestCase
|
|
{
|
|
function test_make()
|
|
{
|
|
$v1 = OAuth2\Util\SecureKey::make();
|
|
$v2 = OAuth2\Util\SecureKey::make();
|
|
$v3 = OAuth2\Util\SecureKey::make(50);
|
|
|
|
$this->assertEquals(40, strlen($v1));
|
|
$this->assertTrue($v1 !== $v2);
|
|
$this->assertEquals(50, strlen($v3));
|
|
}
|
|
} |