summaryrefslogtreecommitdiff
path: root/Zend/tests/assert/expect_006.phpt
blob: 1154f6a6f818d6e7c79ff8d6cea65c1fe1508fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
test looping assert (pass)
--INI--
zend.assertions=1
assert.exception=1
--FILE--
<?php
for($i=0; $i<100000; $i++) {
    assert ($i < 100000, "The universe should make sense");
}
var_dump(true);
?>
--EXPECT--
bool(true)