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