Use assertArrayNotHasKey().

This commit is contained in:
Andreas Fischer 2014-12-05 00:18:45 +01:00
parent f2a08f7b6c
commit d6c210984c

View File

@ -36,8 +36,9 @@ class Unit_Crypt_RandomTest extends PhpseclibTestCase
for ($i = 0; $i < 10000; ++$i) {
$rand = crypt_random_string(16);
$this->assertSame(16, strlen($rand));
$this->assertFalse(
isset($values[$rand]),
$this->assertArrayNotHasKey(
$rand,
$values,
'Failed asserting that generated value does not exist in set.'
);
$values[$rand] = true;