Skip to content

Catch Assertions

Keith edited this page May 28, 2019 · 5 revisions

[php 7]

ok\asserts(false);
try {
    $caught = false;
    
    assert(false);    
    
} catch (AssertionError $ex) {
    $caught = true;
    
    return true;
}
ok\asserts(true);

assert( $caught );

Clone this wiki locally