1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/ext/standard/tests/assert/assert_options_error.phpt
2019-08-29 23:10:37 +02:00

13 lines
182 B
PHP

--TEST--
assert_options() - unknown assert option.
--FILE--
<?php
try {
assert_options(1000);
} catch (\Error $e) {
echo $e->getMessage();
}
?>
--EXPECT--
Unknown value 1000