Cleaned up tests

This commit is contained in:
Alex Bilbie
2014-05-03 10:55:25 +01:00
parent ed7f5370ca
commit 5c8ed58c67
22 changed files with 75 additions and 88 deletions

View File

@@ -1,13 +1,12 @@
<?php
namespace LeagueTests\Util;
namespace LeagueTests\util;
use \League\OAuth2\Server\Util\SecureKey;
use \Mockery as M;
class SecureKeyTest extends \PHPUnit_Framework_TestCase
{
function testGenerate()
public function testGenerate()
{
$v1 = SecureKey::generate();
$v2 = SecureKey::generate();
@@ -34,4 +33,4 @@ class SecureKeyTest extends \PHPUnit_Framework_TestCase
$this->assertSame($algorithm, SecureKey::getAlgorithm());
$this->assertEquals($result, SecureKey::generate(11));
}
}
}