summaryrefslogtreecommitdiff
path: root/Zend/tests/assert/expect_014.phpt
blob: def99402ec5ce19cd4ec89310f61864c21e5721f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
test failing assertion when disabled
--INI--
zend.assertions=0
assert.exception=1
--FILE--
<?php
assert(false);
var_dump(true);
?>
--EXPECT--
bool(true)