blob: f1581fe720ea79a2cb6ce393335ea293b154eed1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
assert_options() - unknown assert option.
--FILE--
<?php
try {
assert_options(1000);
} catch (\ValueError $e) {
echo $e->getMessage();
}
?>
--EXPECT--
assert_options(): Argument #1 ($option) must be an ASSERT_* constant
|