Removed unnecessary function

This commit is contained in:
Philipp Holzer 2018-11-05 21:17:46 +01:00
parent 47095d70a9
commit 6949841947
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
1 changed files with 0 additions and 14 deletions

View File

@ -7,20 +7,6 @@ use PHPUnit\Framework\TestCase;
class CryptoTest extends TestCase
{
/**
* Replaces rand results with given mocks
*
*/
private function assertRand($min, $max)
{
global $phpMock;
$phpMock['rand'] = function($mMin, $mMax) use ($min, $max) {
$this->assertEquals($min, $mMin);
$this->assertEquals($max, $mMax);
return 1;
};
}
/**
* Replaces random_int results with given mocks
*