1--TEST--
2zend_throw_exception with NULL message
3--FILE--
4<?php
5try {
6    $assert = 'assert';
7    $assert(false);
8} catch (AssertionError $assertionError) {
9    echo 'Done' . PHP_EOL;
10}
11?>
12--EXPECT--
13Done
14