xref: /php-src/Zend/tests/assert/expect_014.phpt (revision d679f022)
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)
13