Delete an assertion record by message ID.
$message_id: Message ID of the assertion to delete.
TRUE if the assertion was deleted, FALSE otherwise.
DrupalTestCase::insertAssert()
public static function deleteAssert($message_id) {
return (bool) self::getDatabaseConnection()
->delete('simpletest')
->condition('message_id', $message_id)
->execute();
}