Updated tests for new namespace

This commit is contained in:
Alex Bilbie
2013-05-08 11:06:21 -07:00
parent 850473ce40
commit f4b955ccff
9 changed files with 185 additions and 185 deletions

View File

@@ -4,9 +4,9 @@ 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);
$v1 = League\OAuth2\Util\SecureKey::make();
$v2 = League\OAuth2\Util\SecureKey::make();
$v3 = League\OAuth2\Util\SecureKey::make(50);
$this->assertEquals(40, strlen($v1));
$this->assertTrue($v1 !== $v2);