1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/standard/tests/assert/assert_options_error.phpt

15 lines
308 B
PHP

--TEST--
assert_options() - unknown assert option.
--FILE--
<?php
try {
assert_options(1000);
} catch (\ValueError $e) {
echo $e->getMessage();
}
?>
--EXPECTF--
Deprecated: Function assert_options() is deprecated in %s on line %d
assert_options(): Argument #1 ($option) must be an ASSERT_* constant