* plunit.assert_not_null * plunit.assert_not_null_message * * Syntax: * PROCEDURE assert_not_null(actual anyelement, message varchar default ''); * * Purpose: * Asserts that the actual isn't null. The optional message will be * displayed if the assertion fails. If not supplied, a default message * is displayed. * ****************************************************************
| 153 | * |
| 154 | ****************************************************************/ |
| 155 | Datum |
| 156 | plunit_assert_not_null(PG_FUNCTION_ARGS) |
| 157 | { |
| 158 | return plunit_assert_not_null_message(fcinfo); |
| 159 | } |
| 160 | |
| 161 | Datum |
| 162 | plunit_assert_not_null_message(PG_FUNCTION_ARGS) |
nothing calls this directly
no test coverage detected