expect_004.phpt   [plain text]


--TEST--
test providing reason (fail)
--INI--
zend.assertions=1
assert.exception=1
--FILE--
<?php
try {
    assert(false, "I require this to succeed");
} catch (AssertionError $ex) {
    var_dump($ex->getMessage());
}
?>
--EXPECT--
string(25) "I require this to succeed"