php-src/ext/random/tests/01_functions/random_bytes_error.phpt

22 lines
393 B
PHP

--TEST--
Test error operation of random_bytes()
--FILE--
<?php
//-=-=-=-
try {
$bytes = random_bytes();
} catch (TypeError $e) {
echo $e->getMessage().PHP_EOL;
}
try {
$bytes = random_bytes(0);
} catch (Error $e) {
echo $e->getMessage().PHP_EOL;
}
?>
--EXPECT--
random_bytes() expects exactly 1 argument, 0 given
random_bytes(): Argument #1 ($length) must be greater than 0